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   646 lib/pacemaker/pcmk_graph_producer.c                && pcmk__ends_with(input->action->uuid, "_stop_0")) {
pcmk__ends_with   721 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   642 lib/pacemaker/pcmk_sched_bundle.c     if (pcmk__ends_with(first->uuid, "_stopped_0")
pcmk__ends_with   643 lib/pacemaker/pcmk_sched_bundle.c         || pcmk__ends_with(first->uuid, "_demoted_0")) {
pcmk__ends_with   792 lib/pacemaker/pcmk_sched_bundle.c     if (pcmk__ends_with(then->uuid, "_stop_0")
pcmk__ends_with   793 lib/pacemaker/pcmk_sched_bundle.c         || pcmk__ends_with(then->uuid, "_demote_0")) {
pcmk__ends_with   366 lib/pacemaker/pcmk_sched_probes.c                    && !pcmk__ends_with(order->lh_action_task, "_" RSC_STOP "_0")) {
pcmk__ends_with   382 lib/pacemaker/pcmk_sched_probes.c                        && pcmk__ends_with(order->rh_action_task,
pcmk__ends_with  3675 lib/pengine/unpack.c     bool is_last_failure = pcmk__ends_with(ID(xml_op), "_last_failure_0");