pcmk__ends_with    37 include/crm/common/strings_internal.h bool pcmk__ends_with(const char *s, const char *match);
pcmk__ends_with    16 lib/common/tests/strings/pcmk__ends_with_test.c     assert_false(pcmk__ends_with(NULL, "xyz"));
pcmk__ends_with    18 lib/common/tests/strings/pcmk__ends_with_test.c     assert_true(pcmk__ends_with(NULL, NULL));
pcmk__ends_with    19 lib/common/tests/strings/pcmk__ends_with_test.c     assert_true(pcmk__ends_with(NULL, ""));
pcmk__ends_with    20 lib/common/tests/strings/pcmk__ends_with_test.c     assert_true(pcmk__ends_with("", NULL));
pcmk__ends_with    21 lib/common/tests/strings/pcmk__ends_with_test.c     assert_true(pcmk__ends_with("", ""));
pcmk__ends_with    22 lib/common/tests/strings/pcmk__ends_with_test.c     assert_true(pcmk__ends_with("abc", NULL));
pcmk__ends_with    23 lib/common/tests/strings/pcmk__ends_with_test.c     assert_true(pcmk__ends_with("abc", ""));
pcmk__ends_with    28 lib/common/tests/strings/pcmk__ends_with_test.c     assert_true(pcmk__ends_with("abc", "abc"));
pcmk__ends_with    29 lib/common/tests/strings/pcmk__ends_with_test.c     assert_true(pcmk__ends_with("abc", "bc"));
pcmk__ends_with    30 lib/common/tests/strings/pcmk__ends_with_test.c     assert_true(pcmk__ends_with("abc", "c"));
pcmk__ends_with    31 lib/common/tests/strings/pcmk__ends_with_test.c     assert_true(pcmk__ends_with("abcbc", "bc"));
pcmk__ends_with    33 lib/common/tests/strings/pcmk__ends_with_test.c     assert_false(pcmk__ends_with("abc", "def"));
pcmk__ends_with    34 lib/common/tests/strings/pcmk__ends_with_test.c     assert_false(pcmk__ends_with("abc", "defg"));
pcmk__ends_with    35 lib/common/tests/strings/pcmk__ends_with_test.c     assert_false(pcmk__ends_with("abc", "bcd"));
pcmk__ends_with    36 lib/common/tests/strings/pcmk__ends_with_test.c     assert_false(pcmk__ends_with("abc", "ab"));
pcmk__ends_with    38 lib/common/tests/strings/pcmk__ends_with_test.c     assert_false(pcmk__ends_with("abc", "BC"));
pcmk__ends_with   660 lib/pacemaker/pcmk_graph_producer.c                && pcmk__ends_with(input->action->uuid, "_stop_0")) {
pcmk__ends_with   734 lib/pacemaker/pcmk_graph_producer.c                && pcmk__ends_with(input->action->uuid, "_stop_0")
pcmk__ends_with    55 lib/pacemaker/pcmk_resource.c         bool failure = pcmk__ends_with(ID(lrm_rsc_op), "_last_failure_0");
pcmk__ends_with  1381 lib/pacemaker/pcmk_sched_instances.c     bool current = pcmk__ends_with(first->uuid, "_" PCMK_ACTION_STOPPED "_0")
pcmk__ends_with  1382 lib/pacemaker/pcmk_sched_instances.c                    || pcmk__ends_with(first->uuid,
pcmk__ends_with  1468 lib/pacemaker/pcmk_sched_instances.c     if (pcmk__ends_with(then->uuid, "_stop_0")
pcmk__ends_with  1469 lib/pacemaker/pcmk_sched_instances.c         || pcmk__ends_with(then->uuid, "_demote_0")) {
pcmk__ends_with   376 lib/pacemaker/pcmk_sched_probes.c                    && !pcmk__ends_with(order->lh_action_task,
pcmk__ends_with   392 lib/pacemaker/pcmk_sched_probes.c                        && pcmk__ends_with(order->rh_action_task,
pcmk__ends_with  4140 lib/pengine/unpack.c     bool is_last_failure = pcmk__ends_with(history->id, "_last_failure_0");