Searched refs:boot (Results 1 - 25 of 57) sorted by relevance

123

/macosx-10.9.5/msdosfs-198/fsck_msdos.tproj/
H A Dboot.c69 readboot(dosfs, boot)
71 struct bootblock *boot;
83 perr("could not read boot block");
101 pfatal("Invalid BS_jmpBoot in boot block: %02x%02x%02x\n", block[0], block[1], block[2]);
105 memset(boot, 0, sizeof *boot);
106 boot->ValidFat = -1;
109 boot->BytesPerSec = block[11] + (block[12] << 8);
110 boot->SecPerClust = block[13];
111 boot
[all...]
H A Dcheck.c73 struct bootblock boot; local
101 mod = readboot(dosfs, &boot);
112 if (boot.ClustMask == CLUST12_MASK) {
122 else if (isdirty(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0)) {
137 boot.NumFiles = 0; /* Reset file count in case we loop back here */
138 boot.NumBad = 0;
154 mod |= fat_init(dosfs, &boot);
164 mod |= resetDosDirSection(&boot);
[all...]
H A Dext.h102 * read a boot block in a machine independend fashion and translate
115 int resetDosDirSection(struct bootblock *boot);
117 int handleDirTree(int, struct bootblock *boot);
130 int fat_init(int fs, struct bootblock *boot);
139 int isdirty(int fs, struct bootblock *boot, int fat);
150 int initUseMap(struct bootblock *boot);
H A Ddir.c120 static int delete(int fd, struct bootblock *boot, cl_t startcl, size_t startoff, cl_t endcl, size_t endoff, int notlast);
255 markDosDirChain(struct bootblock *boot, struct dosDirEntry *dir) argument
264 while (cluster >= CLUST_FIRST && cluster < boot->NumClusters && !isUsed(cluster))
298 else if (cluster < CLUST_FIRST || cluster >= boot->NumClusters)
315 dir->physicalSize = (u_int64_t)count * boot->ClusterSize;
337 resetDosDirSection(struct bootblock *boot) argument
343 b1 = boot->RootDirEnts * 32;
344 b2 = boot->SecPerClust * boot->BytesPerSec;
353 if (boot
440 delete(int fd, struct bootblock *boot, cl_t startcl, size_t startoff, cl_t endcl, size_t endoff, int notlast) argument
1085 handleDirTree(int dosfs, struct bootblock *boot) argument
[all...]
H A Dfat.c121 int fat_init(int fs, struct bootblock *boot) argument
136 gBoot = boot;
142 switch (boot->ClustMask)
157 pfatal("Unknown cluster mask (0x%08X)\n", boot->ClustMask);
161 if (initUseMap(boot))
182 gNumCacheBlocks = (boot->FATsecs*boot->BytesPerSec+FAT_CHUNK_SIZE-1)/FAT_CHUNK_SIZE;
216 * the same as boot->Media. All other bits should be set. Note that we
224 value &= boot->ClustMask;
225 temp = boot
768 isdirty(int fs, struct bootblock *boot, int fat) argument
915 initUseMap(struct bootblock *boot) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/pexpert/pexpert/
H A Dboot.h31 #include <pexpert/machine/boot.h>
H A DMakefile22 boot.h \
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dmodentry.c7 int modentry _((int boot, Module m, void *ptr));
11 modentry(int boot, Module m, void *ptr) argument
13 switch (boot) {
/macosx-10.9.5/xnu-2422.115.4/pexpert/i386/
H A Dpe_bootargs.c29 #include <pexpert/boot.h>
/macosx-10.9.5/gpt-12/
H A DMakefile4 SRCS= add.c boot.c create.c destroy.c gpt.c label.c map.c migrate.c \
H A Dboot.c32 __FBSDID("$FreeBSD: src/sbin/gpt/boot.c,v 1.2.2.1.6.1 2010/02/10 00:26:20 kensmith Exp $");
49 static const char *pmbr_path = "/boot/pmbr";
50 static const char *gptboot_path = "/boot/gptboot";
114 boot(int fd) function
125 /* First step: verify boot partition size. */
131 warnx("invalid boot partition size %lu", boot_size);
137 /* Second step: write the PMBR boot loader into the PMBR. */
145 warn("unable to open PMBR boot loader");
149 warnx("invalid PMBR boot loader");
155 warn("unable to read PMBR boot loade
[all...]
H A Dshow.c68 static uuid_t boot = GPT_ENT_TYPE_FREEBSD_BOOT;
87 if (uuid_equal(t, &boot, NULL))
88 return ("FreeBSD boot");
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/ctext/
H A Dctext_test_ws.tcl5 ctext::addHighlightClass {.t blah} c blue [list bat ball boot cat hat]
/macosx-10.9.5/xnu-2422.115.4/pexpert/pexpert/i386/
H A DMakefile11 boot.h \
/macosx-10.9.5/xnu-2422.115.4/pexpert/pexpert/machine/
H A DMakefile11 boot.h \
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dmachrunloopserver.cpp46 MachRunLoopServer::MachRunLoopServer(const char *name, const Bootstrap &boot) argument
47 : MachServer(name, boot), CFAutoPort(primaryServicePort())
H A Dmachrunloopserver.h54 MachRunLoopServer(const char *name, const Bootstrap &boot); // register in bootstrap
H A Dmach++.h209 { mach_port_t boot; check(task_get_bootstrap_port(mPort, &boot)); return boot; } local
210 void bootstrap(Bootstrap boot) argument
211 { check(task_set_bootstrap_port(mPort, boot)); }
237 StBootstrap(const Bootstrap &boot, const TaskPort &task = TaskPort());
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dmachrunloopserver.cpp46 MachRunLoopServer::MachRunLoopServer(const char *name, const Bootstrap &boot) argument
47 : MachServer(name, boot), CFAutoPort(primaryServicePort())
H A Dmachrunloopserver.h54 MachRunLoopServer(const char *name, const Bootstrap &boot); // register in bootstrap
H A Dmach++.h209 { mach_port_t boot; check(task_get_bootstrap_port(mPort, &boot)); return boot; } local
210 void bootstrap(Bootstrap boot) argument
211 { check(task_set_bootstrap_port(mPort, boot)); }
237 StBootstrap(const Bootstrap &boot, const TaskPort &task = TaskPort());
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkern_xxx.c119 error = boot(RB_BOOT, uap->opt, command);
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dreboot.h82 #define RB_ALTBOOT 0x40 /* use /boot.old vs /boot */
88 #define RB_BOOT 1 /* reboot due to boot() */
94 * Constants for converting boot-style device number to type,
134 int boot(int, int, char *);
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dlilo.vim43 syn keyword liloOption backup bitmap boot disktab force-backup keytable map message nextgroup=liloEqPath,liloEqPathComment,liloError skipwhite skipempty
49 syn keyword liloOption menu-scheme raid-extra-boot serial install nextgroup=liloEqAnything,liloEqAnythingComment,liloError skipwhite skipempty
69 syn keyword liloImageOpt map-drive to boot-as nextgroup=liloEqHexNumber,liloEqHexNumberComment,liloError skipwhite skipempty
80 syn keyword liloOption bmp-retain el-torito-bootable-CD large-memory suppress-boot-time-BIOS-data
83 syn keyword liloImageOpt master-boot wmwarn wmdisable
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/
H A DIOCPU.h86 virtual void initCPU(bool boot) = 0;

Completed in 262 milliseconds

123