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         816 daemons/based/based_callbacks.c parse_peer_options(int call_type, xmlNode * request,
call_type         826 daemons/based/based_callbacks.c             call_type, request, local_notify, needs_reply, process, needs_forward);
call_type         829 daemons/based/based_callbacks.c             call_type, request, local_notify, needs_reply, process, needs_forward);
call_type         927 daemons/based/based_callbacks.c     int call_type = 0;
call_type         973 daemons/based/based_callbacks.c     rc = cib_get_operation_id(op, &call_type);
call_type         981 daemons/based/based_callbacks.c         parse_local_options(cib_client, call_type, call_options, host, op,
call_type         984 daemons/based/based_callbacks.c     } else if (parse_peer_options(call_type, request, &local_notify,
call_type         989 daemons/based/based_callbacks.c     is_update = cib_op_modifies(call_type);
call_type        1211 daemons/based/based_callbacks.c     int call_type = 0;
call_type        1250 daemons/based/based_callbacks.c     rc = cib_get_operation_id(op, &call_type);
call_type        1253 daemons/based/based_callbacks.c         rc = cib_op_can_run(call_type, call_options, privileged);
call_type        1256 daemons/based/based_callbacks.c     rc2 = cib_op_prepare(call_type, request, &input, &section);
call_type        1265 daemons/based/based_callbacks.c     } else if (cib_op_modifies(call_type) == FALSE) {
call_type        1266 daemons/based/based_callbacks.c         rc = cib_perform_op(op, call_options, cib_op_func(call_type), TRUE,
call_type        1281 daemons/based/based_callbacks.c         CRM_CHECK(call_type == 3 || call_type == 4, crm_err("Call type: %d", call_type);
call_type        1317 daemons/based/based_callbacks.c     rc = cib_perform_op(op, call_options, cib_op_func(call_type), FALSE,
call_type        1477 daemons/based/based_callbacks.c     if (cib_op_modifies(call_type) == FALSE && output != current_cib) {
call_type        1482 daemons/based/based_callbacks.c     if (call_type >= 0) {
call_type        1483 daemons/based/based_callbacks.c         cib_op_cleanup(call_type, call_options, &input, &output);
call_type         320 daemons/based/based_common.c cib_op_func(int call_type)
call_type         322 daemons/based/based_common.c     return &(cib_server_ops[call_type].fn);
call_type         326 daemons/based/based_common.c cib_op_modifies(int call_type)
call_type         328 daemons/based/based_common.c     return cib_server_ops[call_type].modifies_cib;
call_type         332 daemons/based/based_common.c cib_op_can_run(int call_type, int call_options, bool privileged)
call_type         334 daemons/based/based_common.c     if (!privileged && cib_server_ops[call_type].needs_privileges) {
call_type         341 daemons/based/based_common.c cib_op_prepare(int call_type, xmlNode * request, xmlNode ** input, const char **section)
call_type         343 daemons/based/based_common.c     crm_trace("Prepare %d", call_type);
call_type         344 daemons/based/based_common.c     return cib_server_ops[call_type].prepare(request, input, section);
call_type         348 daemons/based/based_common.c cib_op_cleanup(int call_type, int options, xmlNode ** input, xmlNode ** output)
call_type         350 daemons/based/based_common.c     crm_trace("Cleanup %d", call_type);
call_type         351 daemons/based/based_common.c     return cib_server_ops[call_type].cleanup(options, input, output);
call_type         129 daemons/based/pacemaker-based.h cib_op_t *cib_op_func(int call_type);
call_type         130 daemons/based/pacemaker-based.h gboolean cib_op_modifies(int call_type);
call_type         131 daemons/based/pacemaker-based.h int cib_op_prepare(int call_type, xmlNode *request, xmlNode **input,
call_type         133 daemons/based/pacemaker-based.h int cib_op_cleanup(int call_type, int options, xmlNode **input,
call_type         135 daemons/based/pacemaker-based.h int cib_op_can_run(int call_type, int call_options, bool privileged);