Home
last modified time | relevance | path

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

/openbmc/u-boot/include/
H A Dcbfs.h61 struct cbfs_cachenode { struct
62 struct cbfs_cachenode *next; argument
101 const struct cbfs_cachenode *file_cbfs_get_first(void);
108 void file_cbfs_get_next(const struct cbfs_cachenode **file);
117 const struct cbfs_cachenode *file_cbfs_find(const char *name);
134 const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom,
144 const char *file_cbfs_name(const struct cbfs_cachenode *file);
153 u32 file_cbfs_size(const struct cbfs_cachenode *file);
162 u32 file_cbfs_type(const struct cbfs_cachenode *file);
174 long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
/openbmc/u-boot/fs/cbfs/
H A Dcbfs.c38 static struct cbfs_cachenode *file_cache;
77 struct cbfs_cachenode *newNode, u32 *used) in file_cbfs_next_file()
126 struct cbfs_cachenode *cache_node; in file_cbfs_fill_cache()
127 struct cbfs_cachenode *newNode; in file_cbfs_fill_cache()
128 struct cbfs_cachenode **cache_tail = &file_cache; in file_cbfs_fill_cache()
133 struct cbfs_cachenode *oldNode = cache_node; in file_cbfs_fill_cache()
143 newNode = (struct cbfs_cachenode *) in file_cbfs_fill_cache()
144 malloc(sizeof(struct cbfs_cachenode)); in file_cbfs_fill_cache()
209 const struct cbfs_cachenode *file_cbfs_get_first(void) in file_cbfs_get_first()
220 void file_cbfs_get_next(const struct cbfs_cachenode **file) in file_cbfs_get_next()
[all …]
/openbmc/u-boot/cmd/
H A Dcbfs.c50 const struct cbfs_cachenode *file; in do_cbfs_fsload()
97 const struct cbfs_cachenode *file = file_cbfs_get_first(); in do_cbfs_ls()