call_type         520 cib/callbacks.c parse_local_options_v1(crm_client_t * cib_client, int call_type, int call_options, const char *host,
call_type         524 cib/callbacks.c     if (cib_op_modifies(call_type)
call_type         558 cib/callbacks.c parse_local_options_v2(crm_client_t * cib_client, int call_type, int call_options, const char *host,
call_type         562 cib/callbacks.c     if (cib_op_modifies(call_type)) {
call_type         605 cib/callbacks.c parse_local_options(crm_client_t * cib_client, int call_type, int call_options, const char *host,
call_type         610 cib/callbacks.c         parse_local_options_v1(cib_client, call_type, call_options, host,
call_type         613 cib/callbacks.c         parse_local_options_v2(cib_client, call_type, call_options, host,
call_type         619 cib/callbacks.c parse_peer_options_v1(int call_type, xmlNode * request,
call_type         717 cib/callbacks.c parse_peer_options_v2(int call_type, xmlNode * request,
call_type         776 cib/callbacks.c     } else if (is_reply && cib_op_modifies(call_type)) {
call_type         831 cib/callbacks.c parse_peer_options(int call_type, xmlNode * request,
call_type         841 cib/callbacks.c             call_type, request, local_notify, needs_reply, process, needs_forward);
call_type         844 cib/callbacks.c             call_type, request, local_notify, needs_reply, process, needs_forward);
call_type         933 cib/callbacks.c     int call_type = 0;
call_type         996 cib/callbacks.c     rc = cib_get_operation_id(op, &call_type);
call_type        1004 cib/callbacks.c         parse_local_options(cib_client, call_type, call_options, host, op,
call_type        1007 cib/callbacks.c     } else if (parse_peer_options(call_type, request, &local_notify,
call_type        1012 cib/callbacks.c     is_update = cib_op_modifies(call_type);
call_type        1194 cib/callbacks.c     int call_type = 0;
call_type        1224 cib/callbacks.c     rc = cib_get_operation_id(op, &call_type);
call_type        1227 cib/callbacks.c         rc = cib_op_can_run(call_type, call_options, privileged, global_update);
call_type        1230 cib/callbacks.c     rc2 = cib_op_prepare(call_type, request, &input, &section);
call_type        1239 cib/callbacks.c     } else if (cib_op_modifies(call_type) == FALSE) {
call_type        1240 cib/callbacks.c         rc = cib_perform_op(op, call_options, cib_op_func(call_type), TRUE,
call_type        1256 cib/callbacks.c         CRM_CHECK(call_type == 3 || call_type == 4, crm_err("Call type: %d", call_type);
call_type        1276 cib/callbacks.c         rc = cib_perform_op(op, call_options, cib_op_func(call_type), FALSE,
call_type        1392 cib/callbacks.c     if (cib_op_modifies(call_type) == FALSE && output != current_cib) {
call_type        1397 cib/callbacks.c     if (call_type >= 0) {
call_type        1398 cib/callbacks.c         cib_op_cleanup(call_type, call_options, &input, &output);
call_type         308 cib/common.c   cib_op_func(int call_type)
call_type         310 cib/common.c       return &(cib_server_ops[call_type].fn);
call_type         314 cib/common.c   cib_op_modifies(int call_type)
call_type         316 cib/common.c       return cib_server_ops[call_type].modifies_cib;
call_type         320 cib/common.c   cib_op_can_run(int call_type, int call_options, gboolean privileged, gboolean global_update)
call_type         322 cib/common.c       if (privileged == FALSE && cib_server_ops[call_type].needs_privileges) {
call_type         330 cib/common.c           && (call_options & cib_quorum_override) == 0 && cib_server_ops[call_type].needs_quorum) {
call_type         338 cib/common.c   cib_op_prepare(int call_type, xmlNode * request, xmlNode ** input, const char **section)
call_type         340 cib/common.c       crm_trace("Prepare %d", call_type);
call_type         341 cib/common.c       return cib_server_ops[call_type].prepare(request, input, section);
call_type         345 cib/common.c   cib_op_cleanup(int call_type, int options, xmlNode ** input, xmlNode ** output)
call_type         347 cib/common.c       crm_trace("Cleanup %d", call_type);
call_type         348 cib/common.c       return cib_server_ops[call_type].cleanup(options, input, output);
call_type          25 cib/common.h   extern cib_op_t *cib_op_func(int call_type);
call_type          27 cib/common.h   extern gboolean cib_op_modifies(int call_type);
call_type          28 cib/common.h   extern int cib_op_prepare(int call_type, xmlNode * request, xmlNode ** input, const char **section);
call_type          29 cib/common.h   extern int cib_op_cleanup(int call_type, int options, xmlNode ** input, xmlNode ** output);
call_type          30 cib/common.h   extern int cib_op_can_run(int call_type, int call_options, gboolean privileged,