possible_matches  723 lib/pacemaker/pcmk_sched_native.c     GListPtr possible_matches = NULL;
possible_matches  774 lib/pacemaker/pcmk_sched_native.c     possible_matches = find_actions_exact(rsc->actions, key, node);
possible_matches  775 lib/pacemaker/pcmk_sched_native.c     if (possible_matches == NULL) {
possible_matches  782 lib/pacemaker/pcmk_sched_native.c         for (gIter = possible_matches; gIter != NULL; gIter = gIter->next) {
possible_matches  790 lib/pacemaker/pcmk_sched_native.c         g_list_free(possible_matches);
possible_matches  920 lib/pacemaker/pcmk_sched_native.c     GListPtr possible_matches = NULL;
possible_matches  970 lib/pacemaker/pcmk_sched_native.c         possible_matches = find_actions_exact(rsc->actions, key, node);
possible_matches  971 lib/pacemaker/pcmk_sched_native.c         if (possible_matches) {
possible_matches  974 lib/pacemaker/pcmk_sched_native.c             g_list_free(possible_matches);
possible_matches 1010 lib/pacemaker/pcmk_sched_native.c         possible_matches = find_actions_exact(rsc->actions, key, stop_node);
possible_matches 1011 lib/pacemaker/pcmk_sched_native.c         if (possible_matches == NULL) {
possible_matches 1019 lib/pacemaker/pcmk_sched_native.c             g_list_free(possible_matches);
possible_matches 2517 lib/pacemaker/pcmk_sched_native.c     GListPtr possible_matches = NULL;
possible_matches 2564 lib/pacemaker/pcmk_sched_native.c     possible_matches = pe__resource_actions(rsc, next, RSC_START, FALSE);
possible_matches 2565 lib/pacemaker/pcmk_sched_native.c     if (possible_matches) {
possible_matches 2566 lib/pacemaker/pcmk_sched_native.c         start = possible_matches->data;
possible_matches 2567 lib/pacemaker/pcmk_sched_native.c         g_list_free(possible_matches);
possible_matches 2575 lib/pacemaker/pcmk_sched_native.c     possible_matches = pe__resource_actions(rsc, start_node, RSC_STOP, FALSE);
possible_matches 2576 lib/pacemaker/pcmk_sched_native.c     if (possible_matches) {
possible_matches 2577 lib/pacemaker/pcmk_sched_native.c         stop = possible_matches->data;
possible_matches 2578 lib/pacemaker/pcmk_sched_native.c         g_list_free(possible_matches);
possible_matches 2581 lib/pacemaker/pcmk_sched_native.c     possible_matches = pe__resource_actions(rsc, next, RSC_PROMOTE, FALSE);
possible_matches 2582 lib/pacemaker/pcmk_sched_native.c     if (possible_matches) {
possible_matches 2583 lib/pacemaker/pcmk_sched_native.c         promote = possible_matches->data;
possible_matches 2584 lib/pacemaker/pcmk_sched_native.c         g_list_free(possible_matches);
possible_matches 2587 lib/pacemaker/pcmk_sched_native.c     possible_matches = pe__resource_actions(rsc, next, RSC_DEMOTE, FALSE);
possible_matches 2588 lib/pacemaker/pcmk_sched_native.c     if (possible_matches) {
possible_matches 2589 lib/pacemaker/pcmk_sched_native.c         demote = possible_matches->data;
possible_matches 2590 lib/pacemaker/pcmk_sched_native.c         g_list_free(possible_matches);
possible_matches 2596 lib/pacemaker/pcmk_sched_native.c         possible_matches = pe__resource_actions(rsc, next, RSC_MIGRATED, FALSE);
possible_matches 2597 lib/pacemaker/pcmk_sched_native.c         if (possible_matches) {
possible_matches 2598 lib/pacemaker/pcmk_sched_native.c             migrate_op = possible_matches->data;
possible_matches 2640 lib/pacemaker/pcmk_sched_native.c         g_list_free(possible_matches);
possible_matches 2655 lib/pacemaker/pcmk_sched_native.c             possible_matches = find_actions(rsc->actions, key, node);
possible_matches 2656 lib/pacemaker/pcmk_sched_native.c             if (possible_matches) {
possible_matches 2657 lib/pacemaker/pcmk_sched_native.c                 stop_op = possible_matches->data;
possible_matches 2658 lib/pacemaker/pcmk_sched_native.c                 g_list_free(possible_matches);
possible_matches 2120 lib/pengine/unpack.c         GList *possible_matches = pe__resource_actions(rsc, node, RSC_STOP,
possible_matches 2122 lib/pengine/unpack.c         GListPtr gIter = possible_matches;
possible_matches 2130 lib/pengine/unpack.c         g_list_free(possible_matches);
possible_matches  470 lib/pengine/utils.c     GListPtr possible_matches = NULL;
possible_matches  476 lib/pengine/utils.c         possible_matches = find_actions(rsc->actions, key, on_node);
possible_matches  482 lib/pengine/utils.c         possible_matches = find_actions(data_set->actions, key, on_node);
possible_matches  490 lib/pengine/utils.c     if (possible_matches != NULL) {
possible_matches  491 lib/pengine/utils.c         if (pcmk__list_of_multiple(possible_matches)) {
possible_matches  494 lib/pengine/utils.c                     on_node ? on_node->details->uname : "<NULL>", g_list_length(possible_matches));
possible_matches  497 lib/pengine/utils.c         action = g_list_nth_data(possible_matches, 0);
possible_matches  502 lib/pengine/utils.c         g_list_free(possible_matches);