Home
last modified time | relevance | path

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

/openbmc/u-boot/include/
H A Dos.h190 struct os_dirent_node { struct
191 struct os_dirent_node *next; /* Pointer to next node, or NULL */ argument
206 int os_dirent_ls(const char *dirname, struct os_dirent_node **headp); argument
215 void os_dirent_free(struct os_dirent_node *node);
/openbmc/u-boot/arch/sandbox/cpu/
H A Dos.c378 void os_dirent_free(struct os_dirent_node *node) in os_dirent_free()
380 struct os_dirent_node *next; in os_dirent_free()
389 int os_dirent_ls(const char *dirname, struct os_dirent_node **headp) in os_dirent_ls()
392 struct os_dirent_node *head, *node, *next; in os_dirent_ls()
/openbmc/u-boot/fs/sandbox/
H A Dsandboxfs.c85 struct os_dirent_node *head, *node; in sandbox_fs_ls()