lst               137 include/crm/common/strings_internal.h gboolean pcmk__str_in_list(const gchar *s, const GList *lst, uint32_t flags);
lst              1403 lib/common/schemas.c     GList *lst = NULL;
lst              1407 lib/common/schemas.c         return lst;
lst              1420 lib/common/schemas.c         lst = g_list_prepend(lst, s);
lst              1424 lib/common/schemas.c             lst = g_list_prepend(lst, xform);
lst              1430 lib/common/schemas.c             lst = g_list_prepend(lst, enter);
lst              1436 lib/common/schemas.c                 lst = g_list_prepend(lst, leave);
lst              1441 lib/common/schemas.c     return lst;
lst               993 lib/common/strings.c pcmk__str_in_list(const gchar *s, const GList *lst, uint32_t flags)
lst               995 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               387 tools/crm_mon.c apply_include_exclude(GSList *lst, GError **error) {
lst               389 tools/crm_mon.c     GSList *node = lst;