call_type         486 daemons/based/based_callbacks.c parse_local_options_v1(const pcmk__client_t *cib_client, int call_type,
call_type         491 daemons/based/based_callbacks.c     if (cib_op_modifies(call_type)
call_type         529 daemons/based/based_callbacks.c parse_local_options_v2(const pcmk__client_t *cib_client, int call_type,
call_type         534 daemons/based/based_callbacks.c     if (cib_op_modifies(call_type)) {
call_type         583 daemons/based/based_callbacks.c parse_local_options(const pcmk__client_t *cib_client, int call_type,
call_type         589 daemons/based/based_callbacks.c         parse_local_options_v1(cib_client, call_type, call_options, host,
call_type         592 daemons/based/based_callbacks.c         parse_local_options_v2(cib_client, call_type, call_options, host,
call_type         598 daemons/based/based_callbacks.c parse_peer_options_v1(int call_type, xmlNode * request,
call_type         696 daemons/based/based_callbacks.c parse_peer_options_v2(int call_type, xmlNode * request,
call_type         765 daemons/based/based_callbacks.c     } else if (is_reply && cib_op_modifies(call_type)) {
call_type         820 daemons/based/based_callbacks.c parse_peer_options(int call_type, xmlNode * request,
call_type         830 daemons/based/based_callbacks.c             call_type, request, local_notify, needs_reply, process, needs_forward);
call_type         833 daemons/based/based_callbacks.c             call_type, request, local_notify, needs_reply, process, needs_forward);
call_type         931 daemons/based/based_callbacks.c     int call_type = 0;
call_type         977 daemons/based/based_callbacks.c     rc = cib_get_operation_id(op, &call_type);
call_type         985 daemons/based/based_callbacks.c         parse_local_options(cib_client, call_type, call_options, host, op,
call_type         988 daemons/based/based_callbacks.c     } else if (parse_peer_options(call_type, request, &local_notify,
call_type         993 daemons/based/based_callbacks.c     is_update = cib_op_modifies(call_type);
call_type        1193 daemons/based/based_callbacks.c     int call_type = 0;
call_type        1230 daemons/based/based_callbacks.c     rc = cib_get_operation_id(op, &call_type);
call_type        1233 daemons/based/based_callbacks.c         rc = cib_op_can_run(call_type, call_options, privileged, global_update);
call_type        1236 daemons/based/based_callbacks.c     rc2 = cib_op_prepare(call_type, request, &input, &section);
call_type        1245 daemons/based/based_callbacks.c     } else if (cib_op_modifies(call_type) == FALSE) {
call_type        1246 daemons/based/based_callbacks.c         rc = cib_perform_op(op, call_options, cib_op_func(call_type), TRUE,
call_type        1261 daemons/based/based_callbacks.c         CRM_CHECK(call_type == 3 || call_type == 4, crm_err("Call type: %d", call_type);
call_type        1290 daemons/based/based_callbacks.c         rc = cib_perform_op(op, call_options, cib_op_func(call_type), FALSE,
call_type        1441 daemons/based/based_callbacks.c     if (cib_op_modifies(call_type) == FALSE && output != current_cib) {
call_type        1446 daemons/based/based_callbacks.c     if (call_type >= 0) {
call_type        1447 daemons/based/based_callbacks.c         cib_op_cleanup(call_type, call_options, &input, &output);
call_type         321 daemons/based/based_common.c cib_op_func(int call_type)
call_type         323 daemons/based/based_common.c     return &(cib_server_ops[call_type].fn);
call_type         327 daemons/based/based_common.c cib_op_modifies(int call_type)
call_type         329 daemons/based/based_common.c     return cib_server_ops[call_type].modifies_cib;
call_type         333 daemons/based/based_common.c cib_op_can_run(int call_type, int call_options, gboolean privileged, gboolean global_update)
call_type         335 daemons/based/based_common.c     if (privileged == FALSE && cib_server_ops[call_type].needs_privileges) {
call_type         343 daemons/based/based_common.c         && (call_options & cib_quorum_override) == 0 && cib_server_ops[call_type].needs_quorum) {
call_type         351 daemons/based/based_common.c cib_op_prepare(int call_type, xmlNode * request, xmlNode ** input, const char **section)
call_type         353 daemons/based/based_common.c     crm_trace("Prepare %d", call_type);
call_type         354 daemons/based/based_common.c     return cib_server_ops[call_type].prepare(request, input, section);
call_type         358 daemons/based/based_common.c cib_op_cleanup(int call_type, int options, xmlNode ** input, xmlNode ** output)
call_type         360 daemons/based/based_common.c     crm_trace("Cleanup %d", call_type);
call_type         361 daemons/based/based_common.c     return cib_server_ops[call_type].cleanup(options, input, output);
call_type         137 daemons/based/pacemaker-based.h cib_op_t *cib_op_func(int call_type);
call_type         138 daemons/based/pacemaker-based.h gboolean cib_op_modifies(int call_type);
call_type         139 daemons/based/pacemaker-based.h int cib_op_prepare(int call_type, xmlNode *request, xmlNode **input,
call_type         141 daemons/based/pacemaker-based.h int cib_op_cleanup(int call_type, int options, xmlNode **input,
call_type         143 daemons/based/pacemaker-based.h int cib_op_can_run(int call_type, int call_options, gboolean privileged,