call_type         486 daemons/based/based_callbacks.c parse_local_options_v1(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(pcmk__client_t *cib_client, int call_type,
call_type         534 daemons/based/based_callbacks.c     if (cib_op_modifies(call_type)) {
call_type         582 daemons/based/based_callbacks.c parse_local_options(pcmk__client_t *cib_client, int call_type,
call_type         588 daemons/based/based_callbacks.c         parse_local_options_v1(cib_client, call_type, call_options, host,
call_type         591 daemons/based/based_callbacks.c         parse_local_options_v2(cib_client, call_type, call_options, host,
call_type         597 daemons/based/based_callbacks.c parse_peer_options_v1(int call_type, xmlNode * request,
call_type         694 daemons/based/based_callbacks.c parse_peer_options_v2(int call_type, xmlNode * request,
call_type         761 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        1189 daemons/based/based_callbacks.c     int call_type = 0;
call_type        1224 daemons/based/based_callbacks.c     rc = cib_get_operation_id(op, &call_type);
call_type        1227 daemons/based/based_callbacks.c         rc = cib_op_can_run(call_type, call_options, privileged, global_update);
call_type        1230 daemons/based/based_callbacks.c     rc2 = cib_op_prepare(call_type, request, &input, &section);
call_type        1239 daemons/based/based_callbacks.c     } else if (cib_op_modifies(call_type) == FALSE) {
call_type        1240 daemons/based/based_callbacks.c         rc = cib_perform_op(op, call_options, cib_op_func(call_type), TRUE,
call_type        1255 daemons/based/based_callbacks.c         CRM_CHECK(call_type == 3 || call_type == 4, crm_err("Call type: %d", call_type);
call_type        1284 daemons/based/based_callbacks.c         rc = cib_perform_op(op, call_options, cib_op_func(call_type), FALSE,
call_type        1418 daemons/based/based_callbacks.c     if (cib_op_modifies(call_type) == FALSE && output != current_cib) {
call_type        1423 daemons/based/based_callbacks.c     if (call_type >= 0) {
call_type        1424 daemons/based/based_callbacks.c         cib_op_cleanup(call_type, call_options, &input, &output);
call_type         261 daemons/based/based_common.c cib_op_func(int call_type)
call_type         263 daemons/based/based_common.c     return &(cib_server_ops[call_type].fn);
call_type         267 daemons/based/based_common.c cib_op_modifies(int call_type)
call_type         269 daemons/based/based_common.c     return cib_server_ops[call_type].modifies_cib;
call_type         273 daemons/based/based_common.c cib_op_can_run(int call_type, int call_options, gboolean privileged, gboolean global_update)
call_type         275 daemons/based/based_common.c     if (privileged == FALSE && cib_server_ops[call_type].needs_privileges) {
call_type         283 daemons/based/based_common.c         && (call_options & cib_quorum_override) == 0 && cib_server_ops[call_type].needs_quorum) {
call_type         291 daemons/based/based_common.c cib_op_prepare(int call_type, xmlNode * request, xmlNode ** input, const char **section)
call_type         293 daemons/based/based_common.c     crm_trace("Prepare %d", call_type);
call_type         294 daemons/based/based_common.c     return cib_server_ops[call_type].prepare(request, input, section);
call_type         298 daemons/based/based_common.c cib_op_cleanup(int call_type, int options, xmlNode ** input, xmlNode ** output)
call_type         300 daemons/based/based_common.c     crm_trace("Cleanup %d", call_type);
call_type         301 daemons/based/based_common.c     return cib_server_ops[call_type].cleanup(options, input, output);
call_type         138 daemons/based/pacemaker-based.h cib_op_t *cib_op_func(int call_type);
call_type         139 daemons/based/pacemaker-based.h gboolean cib_op_modifies(int call_type);
call_type         140 daemons/based/pacemaker-based.h int cib_op_prepare(int call_type, xmlNode *request, xmlNode **input,
call_type         142 daemons/based/pacemaker-based.h int cib_op_cleanup(int call_type, int options, xmlNode **input,
call_type         144 daemons/based/pacemaker-based.h int cib_op_can_run(int call_type, int call_options, gboolean privileged,