lst               145 include/crm/common/strings_internal.h gboolean pcmk__str_in_list(const gchar *s, const GList *lst, uint32_t flags);
lst              1286 lib/common/schemas.c     GList *lst = NULL;
lst              1290 lib/common/schemas.c         return lst;
lst              1306 lib/common/schemas.c             lst = g_list_prepend(lst, pcmk__str_copy(entry->d_name));
lst              1309 lib/common/schemas.c         lst = g_list_prepend(lst, crm_strdup_printf("%s.rng", schema->name));
lst              1312 lib/common/schemas.c     return lst;
lst               982 lib/common/strings.c pcmk__str_in_list(const gchar *s, const GList *lst, uint32_t flags)
lst               984 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               378 tools/crm_mon.c apply_include_exclude(GSList *lst, GError **error) {
lst               380 tools/crm_mon.c     GSList *node = lst;