HomeSort by: relevance | last modified time | path
    Searched defs:dosfs (Results 1 - 2 of 2) sorted by relevancy

  /src/sbin/fsck_msdos/
check.c 47 int dosfs; local in function:checkfilesys
59 dosfs = open(filename, rdonly ? O_RDONLY : O_RDWR, 0);
60 if (dosfs < 0 && !rdonly) {
61 dosfs = open(filename, O_RDONLY, 0);
62 if (dosfs >= 0)
70 if (dosfs < 0) {
75 mod = readboot(dosfs, &boot);
77 close(dosfs);
89 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat);
91 close(dosfs);
    [all...]
  /src/sys/arch/i386/stand/dosboot/
devopen.c 44 static struct fs_ops dosfs = { variable in typeref:struct:fs_ops
109 file_system[0] = dosfs; /* structure assignment! */

Completed in 12 milliseconds