Lines Matching refs:items
654 GList *items = NULL; in xs_directory() local
666 err = xs_impl_directory(s->impl, xen_domid, tx_id, path, NULL, &items); in xs_directory()
677 xs_append_strings(s, rsp, items, 0, false); in xs_directory()
679 g_list_free_full(items, g_free); in xs_directory()
691 GList *items = NULL; in xs_directory_part() local
731 err = xs_impl_directory(s->impl, xen_domid, tx_id, path, &gencnt, &items); in xs_directory_part()
742 xs_append_strings(s, rsp, items, offset, true); in xs_directory_part()
744 g_list_free_full(items, g_free); in xs_directory_part()
1523 GList *items = NULL, *l; in xs_be_directory() local
1528 err = xs_impl_directory(h->impl, DOMID_QEMU, t, path, NULL, &items); in xs_be_directory()
1534 items_ret = g_new0(char *, g_list_length(items) + 1); in xs_be_directory()
1536 for (l = items; l; l = l->next) { in xs_be_directory()
1540 g_list_free(items); in xs_be_directory()