Home
last modified time | relevance | path

Searched refs:V9fsDirent (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/tests/qtest/libqos/
H A Dvirtio-9p-client.h68 struct V9fsDirent { struct
73 struct V9fsDirent *next; argument
201 struct V9fsDirent **entries;
475 struct V9fsDirent **entries);
476 void v9fs_free_dirents(struct V9fsDirent *e);
H A Dvirtio-9p-client.c593 struct V9fsDirent **entries) in v9fs_rreaddir()
596 struct V9fsDirent *e = NULL; in v9fs_rreaddir()
598 struct V9fsDirent *unused_entries = NULL; in v9fs_rreaddir()
614 e = g_new(struct V9fsDirent, 1); in v9fs_rreaddir()
621 e = e->next = g_new(struct V9fsDirent, 1); in v9fs_rreaddir()
639 void v9fs_free_dirents(struct V9fsDirent *e) in v9fs_free_dirents()
641 struct V9fsDirent *next = NULL; in v9fs_free_dirents()
/openbmc/qemu/tests/qtest/
H A Dvirtio-9p-test.c95 static bool fs_dirents_contain_name(struct V9fsDirent *e, const char* name) in fs_dirents_contain_name()
114 struct V9fsDirent *entries = NULL; in fs_readdir()
169 struct V9fsDirent *entries, *tail, *partialentries; in do_readdir_split()