lst               136 include/crm/common/strings_internal.h gboolean pcmk__str_in_list(const gchar *s, const GList *lst, uint32_t flags);
lst               883 lib/common/strings.c pcmk__str_in_list(const gchar *s, const GList *lst, uint32_t flags)
lst               885 lib/common/strings.c     for (const GList *ele = lst; ele != NULL; ele = ele->next) {
lst                23 lib/common/tests/lists/pcmk__list_of_1_test.c     GList *lst = NULL;
lst                25 lib/common/tests/lists/pcmk__list_of_1_test.c     lst = g_list_append(lst, strdup("abc"));
lst                26 lib/common/tests/lists/pcmk__list_of_1_test.c     assert_true(pcmk__list_of_1(lst));
lst                28 lib/common/tests/lists/pcmk__list_of_1_test.c     g_list_free_full(lst, free);
lst                33 lib/common/tests/lists/pcmk__list_of_1_test.c     GList *lst = NULL;
lst                35 lib/common/tests/lists/pcmk__list_of_1_test.c     lst = g_list_append(lst, strdup("abc"));
lst                36 lib/common/tests/lists/pcmk__list_of_1_test.c     lst = g_list_append(lst, strdup("xyz"));
lst                37 lib/common/tests/lists/pcmk__list_of_1_test.c     assert_false(pcmk__list_of_1(lst));
lst                39 lib/common/tests/lists/pcmk__list_of_1_test.c     g_list_free_full(lst, free);
lst                23 lib/common/tests/lists/pcmk__list_of_multiple_test.c     GList *lst = NULL;
lst                25 lib/common/tests/lists/pcmk__list_of_multiple_test.c     lst = g_list_append(lst, strdup("abc"));
lst                26 lib/common/tests/lists/pcmk__list_of_multiple_test.c     assert_false(pcmk__list_of_multiple(lst));
lst                28 lib/common/tests/lists/pcmk__list_of_multiple_test.c     g_list_free_full(lst, free);
lst                33 lib/common/tests/lists/pcmk__list_of_multiple_test.c     GList *lst = NULL;
lst                35 lib/common/tests/lists/pcmk__list_of_multiple_test.c     lst = g_list_append(lst, strdup("abc"));
lst                36 lib/common/tests/lists/pcmk__list_of_multiple_test.c     lst = g_list_append(lst, strdup("xyz"));
lst                37 lib/common/tests/lists/pcmk__list_of_multiple_test.c     assert_true(pcmk__list_of_multiple(lst));
lst                39 lib/common/tests/lists/pcmk__list_of_multiple_test.c     g_list_free_full(lst, free);
lst               289 tools/crm_mon.c apply_include_exclude(GSList *lst, GError **error) {
lst               291 tools/crm_mon.c     GSList *node = lst;