Home | History | Annotate | Download | only in libfat

Lines Matching refs:dep

27     struct fat_dirent *dep;
37 dep = libfat_get_sector(fs, s);
38 if (!dep)
43 if (!memcmp(dep->name, name, 11)) {
45 memcpy(direntry->entry, dep, sizeof(*dep));
49 if (read32(&dep->size) == 0)
52 return read16(&dep->clustlo) +
53 (read16(&dep->clusthi) << 16);
56 if (dep->name[0] == 0)
59 dep++;