Home
last modified time | relevance | path

Searched refs:dentptr (Results 1 – 2 of 2) sorted by relevance

/external/u-boot/fs/fat/
Dfat_write.c213 static int is_next_clust(fsdata *mydata, dir_entry *dentptr);
214 static void flush_dir_table(fsdata *mydata, dir_entry **dentptr);
221 fill_dir_slot(fsdata *mydata, dir_entry **dentptr, const char *l_name) in fill_dir_slot() argument
229 checksum = mkcksum((*dentptr)->name, (*dentptr)->ext); in fill_dir_slot()
244 if (is_next_clust(mydata, *dentptr)) { in fill_dir_slot()
246 flush_dir_table(mydata, dentptr); in fill_dir_slot()
248 memcpy(*dentptr, slotptr, sizeof(dir_slot)); in fill_dir_slot()
249 (*dentptr)++; in fill_dir_slot()
254 if (is_next_clust(mydata, *dentptr)) { in fill_dir_slot()
256 flush_dir_table(mydata, dentptr); in fill_dir_slot()
[all …]
Dfat.c311 static int get_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos, in get_contents() argument
314 loff_t filesize = FAT2CPU32(dentptr->size); in get_contents()
316 __u32 curclust = START(dentptr); in get_contents()