graph_fns          28 lib/transition/graph.c crm_graph_functions_t *graph_fns = NULL;
graph_fns         167 lib/transition/graph.c         } else if(graph_fns->allowed && graph_fns->allowed(graph, a) == FALSE) {
graph_fns         189 lib/transition/graph.c         return graph_fns->pseudo(graph, action);
graph_fns         193 lib/transition/graph.c         return graph_fns->rsc(graph, action);
graph_fns         203 lib/transition/graph.c             return graph_fns->stonith(graph, action);
graph_fns         207 lib/transition/graph.c         return graph_fns->crmd(graph, action);
graph_fns         255 lib/transition/graph.c     if (graph_fns == NULL) {
graph_fns          28 lib/transition/utils.c extern crm_graph_functions_t *graph_fns;
graph_fns          66 lib/transition/utils.c     graph_fns = &default_fns;
graph_fns          73 lib/transition/utils.c     graph_fns = fns;
graph_fns          75 lib/transition/utils.c     CRM_ASSERT(graph_fns != NULL);
graph_fns          76 lib/transition/utils.c     CRM_ASSERT(graph_fns->rsc != NULL);
graph_fns          77 lib/transition/utils.c     CRM_ASSERT(graph_fns->crmd != NULL);
graph_fns          78 lib/transition/utils.c     CRM_ASSERT(graph_fns->pseudo != NULL);
graph_fns          79 lib/transition/utils.c     CRM_ASSERT(graph_fns->stonith != NULL);