Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/include/
H A Dcbfs.h52 struct cbfs_cachenode { struct
53 struct cbfs_cachenode *next; argument
92 const struct cbfs_cachenode *file_cbfs_get_first(void);
99 void file_cbfs_get_next(const struct cbfs_cachenode **file);
108 const struct cbfs_cachenode *file_cbfs_find(const char *name);
125 const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom,
135 const char *file_cbfs_name(const struct cbfs_cachenode *file);
144 u32 file_cbfs_size(const struct cbfs_cachenode *file);
153 u32 file_cbfs_type(const struct cbfs_cachenode *file);
165 long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
/OK3568_Linux_fs/u-boot/fs/cbfs/
H A Dcbfs.c39 static struct cbfs_cachenode *file_cache;
78 struct cbfs_cachenode *newNode, u32 *used) in file_cbfs_next_file()
128 struct cbfs_cachenode *cache_node; in file_cbfs_fill_cache()
129 struct cbfs_cachenode *newNode; in file_cbfs_fill_cache()
130 struct cbfs_cachenode **cache_tail = &file_cache; in file_cbfs_fill_cache()
135 struct cbfs_cachenode *oldNode = cache_node; in file_cbfs_fill_cache()
145 newNode = (struct cbfs_cachenode *) in file_cbfs_fill_cache()
146 malloc(sizeof(struct cbfs_cachenode)); in file_cbfs_fill_cache()
211 const struct cbfs_cachenode *file_cbfs_get_first(void) in file_cbfs_get_first()
222 void file_cbfs_get_next(const struct cbfs_cachenode **file) in file_cbfs_get_next()
[all …]
/OK3568_Linux_fs/u-boot/cmd/
H A Dcbfs.c51 const struct cbfs_cachenode *file; in do_cbfs_fsload()
98 const struct cbfs_cachenode *file = file_cbfs_get_first(); in do_cbfs_ls()