Home
last modified time | relevance | path

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

/external/u-boot/include/
Dcbfs.h51 struct cbfs_cachenode { struct
52 struct cbfs_cachenode *next; argument
91 const struct cbfs_cachenode *file_cbfs_get_first(void);
98 void file_cbfs_get_next(const struct cbfs_cachenode **file);
107 const struct cbfs_cachenode *file_cbfs_find(const char *name);
124 const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom,
134 const char *file_cbfs_name(const struct cbfs_cachenode *file);
143 u32 file_cbfs_size(const struct cbfs_cachenode *file);
152 u32 file_cbfs_type(const struct cbfs_cachenode *file);
164 long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
/external/u-boot/fs/cbfs/
Dcbfs.c38 static struct cbfs_cachenode *file_cache;
77 struct cbfs_cachenode *newNode, u32 *used) in file_cbfs_next_file()
127 struct cbfs_cachenode *cache_node; in file_cbfs_fill_cache()
128 struct cbfs_cachenode *newNode; in file_cbfs_fill_cache()
129 struct cbfs_cachenode **cache_tail = &file_cache; in file_cbfs_fill_cache()
134 struct cbfs_cachenode *oldNode = cache_node; in file_cbfs_fill_cache()
144 newNode = (struct cbfs_cachenode *) in file_cbfs_fill_cache()
145 malloc(sizeof(struct cbfs_cachenode)); in file_cbfs_fill_cache()
210 const struct cbfs_cachenode *file_cbfs_get_first(void) in file_cbfs_get_first()
221 void file_cbfs_get_next(const struct cbfs_cachenode **file) in file_cbfs_get_next()
[all …]
/external/u-boot/cmd/
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()