Searched refs:dentptr (Results 1 – 2 of 2) sorted by relevance
| /OK3568_Linux_fs/u-boot/fs/fat/ |
| H A D | fat_write.c | 214 static int is_next_clust(fsdata *mydata, dir_entry *dentptr); 215 static void flush_dir_table(fsdata *mydata, dir_entry **dentptr); 222 fill_dir_slot(fsdata *mydata, dir_entry **dentptr, const char *l_name) in fill_dir_slot() argument 230 checksum = mkcksum((*dentptr)->name, (*dentptr)->ext); in fill_dir_slot() 245 if (is_next_clust(mydata, *dentptr)) { in fill_dir_slot() 247 flush_dir_table(mydata, dentptr); in fill_dir_slot() 249 memcpy(*dentptr, slotptr, sizeof(dir_slot)); in fill_dir_slot() 250 (*dentptr)++; in fill_dir_slot() 255 if (is_next_clust(mydata, *dentptr)) { in fill_dir_slot() 257 flush_dir_table(mydata, dentptr); in fill_dir_slot() [all …]
|
| H A D | fat.c | 318 static int get_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos, in get_contents() argument 321 loff_t filesize = FAT2CPU32(dentptr->size); in get_contents() 323 __u32 curclust = START(dentptr); in get_contents()
|