HomeSort by relevance Sort by last modified time
    Searched refs:dosfs (Results 1 - 4 of 4) sorted by null

  /external/fsck_msdos/
check.c 61 int dosfs; local
74 dosfs = open(fname, rdonly ? O_RDONLY : O_RDWR, 0);
75 if (dosfs < 0 && !rdonly) {
76 dosfs = open(fname, O_RDONLY, 0);
77 if (dosfs >= 0)
85 if (dosfs < 0) {
90 if (readboot(dosfs, &boot) == FSFATAL) {
91 close(dosfs);
96 if (skipclean && preen && checkdirty(dosfs, &boot)) {
115 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat)
    [all...]
boot.c 51 readboot(dosfs, boot)
52 int dosfs;
60 if (read(dosfs, block, sizeof block) < sizeof block) {
109 if (lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET)
111 || read(dosfs, fsinfo, sizeof fsinfo)
136 if (lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET)
138 || write(dosfs, fsinfo, sizeof fsinfo)
156 if (lseek(dosfs, boot->Backup * boot->BytesPerSec, SEEK_SET)
158 || read(dosfs, backup, sizeof backup) != sizeof backup) {
255 writefsinfo(dosfs, boot
    [all...]
dir.c 976 handleDirTree(int dosfs, struct bootblock *boot, struct fatEntry *fat)
980 mod = readDosDirSection(dosfs, boot, fat, rootDir);
1001 mod |= readDosDirSection(dosfs, boot, fat, dir);
1017 reconnect(int dosfs, struct bootblock *boot, struct fatEntry *fat, cl_t head)
1061 if (lseek64(dosfs, lfoff, SEEK_SET) != lfoff
1062 || read(dosfs, lfbuf, boot->ClusterSize) != boot->ClusterSize) {
1091 if (lseek64(dosfs, lfoff, SEEK_SET) != lfoff
1092 || write(dosfs, lfbuf, boot->ClusterSize) != boot->ClusterSize) {
fat.c 661 checklost(int dosfs, struct bootblock *boot, struct fatEntry *fat)
678 mod |= ret = reconnect(dosfs, boot, fat, head);
738 mod |= writefsinfo(dosfs, boot);

Completed in 56 milliseconds