HomeSort by relevance Sort by last modified time
    Searched refs:boot (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/fsck_msdos/
boot.c 36 __RCSID("$NetBSD: boot.c,v 1.9 2003/07/24 19:25:46 ws Exp $");
38 "$FreeBSD: src/sbin/fsck_msdosfs/boot.c,v 1.4.28.1 2009/04/15 03:14:26 kensmith Exp $";
51 readboot(dosfs, boot)
53 struct bootblock *boot;
61 perror("could not read boot block");
66 pfatal("Invalid signature in boot block: %02x%02x", block[511], block[510]);
70 memset(boot, 0, sizeof *boot);
71 boot->ValidFat = -1;
74 boot->BytesPerSec = block[11] + (block[12] << 8)
    [all...]
check.c 62 struct bootblock boot; local
90 if (readboot(dosfs, &boot) == FSFATAL) {
96 if (skipclean && preen && checkdirty(dosfs, &boot)) {
103 if (((boot.FATsecs * boot.BytesPerSec) / 1024) > FAT_COMPARE_MAX_KB)
109 else if (boot.ValidFat < 0)
115 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat);
122 if (!skip_fat_compare && boot.ValidFat < 0
    [all...]
fat.c 74 checkdirty(int fs, struct bootblock *boot)
80 if (boot->ClustMask != CLUST16_MASK && boot->ClustMask != CLUST32_MASK)
83 off = boot->ResSectors;
84 off *= boot->BytesPerSec;
86 buffer = malloc(boot->BytesPerSec);
97 if (read(fs, buffer, boot->BytesPerSec) != boot->BytesPerSec) {
106 if (buffer[0] != boot->Media || buffer[1] != 0xff)
108 if (boot->ClustMask == CLUST16_MASK)
    [all...]
dir.c 224 resetDosDirSection(struct bootblock *boot, struct fatEntry *fat)
230 b1 = boot->RootDirEnts * 32;
231 b2 = boot->SecPerClust * boot->BytesPerSec;
240 if (boot->flags & FAT32) {
241 if (boot->RootCl < CLUST_FIRST || boot->RootCl >= boot->NumClusters) {
243 boot->RootCl);
246 cl = fat[boot->RootCl].next
    [all...]
Android.mk 5 LOCAL_SRC_FILES := boot.c check.c dir.c fat.c main.c
  /build/core/
dex_preopt_libdvm.mk 36 --boot-dir=$(DEXPREOPT_BOOT_JAR_DIR) \
37 --boot-jars=$(DEXPREOPT_BOOT_JARS) \
43 # Special rules for building odex files for boot jars that override java_library.mk rules
45 # $(1): boot jar module name
46 define _dexpreopt-boot-odex
52 @echo "Dexpreopt Boot Jar: $$@"
61 $(foreach b,$(DEXPREOPT_BOOT_JARS_MODULES),$(eval $(call _dexpreopt-boot-odex,$(b))))
63 # $(1): the rest list of boot jars
64 define _build-dexpreopt-boot-jar-dependency-pair
69 $(eval $(call _build-dexpreopt-boot-jar-dependency-pair,$(wordlist 2,999,$(1))))
    [all...]
dex_preopt_libart_boot.mk 1 # Rules to build boot.art
7 # /system/framework/boot.art and should be the same for all supported
15 # DEFAULT_DEX_PREOPT_BUILT_IMAGE_LOCATION=out/target/product/generic_x86_64/dex_bootjars/system/framework/boot.art
16 # DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME=out/target/product/generic_x86_64/dex_bootjars/system/framework/x86_64/boot.art
17 # LIBART_BOOT_IMAGE=/system/framework/x86_64/boot.art
19 # 2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_LOCATION=out/target/product/generic_x86_64/dex_bootjars/system/framework/boot.art
20 # 2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME=out/target/product/generic_x86_64/dex_bootjars/system/framework/x86/boot.art
21 # 2ND_LIBART_BOOT_IMAGE=/system/framework/x86/boot.art
23 $(my_2nd_arch_prefix)DEFAULT_DEX_PREOPT_BUILT_IMAGE_LOCATION := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/boot.art
24 $(my_2nd_arch_prefix)DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$($(my_2nd_arch_prefix)DEX2OAT_TARGET_ARCH)/boot.ar
    [all...]
dex_preopt_odex_install.mk 35 # if WITH_DEXPREOPT_BOOT_IMG_ONLY=true and module is not in boot class path skip
53 # For libart, the boot jars' odex files are replaced by $(DEFAULT_DEX_PREOPT_INSTALLED_IMAGE).
54 # We use this installed_odex trick to get boot.art installed.
59 else # boot jar
94 endif # boot jar
dex_preopt.mk 8 # list of boot classpath jars for dexpreopt
30 # Special rules for building stripped boot jars that override java_library.mk rules
32 # $(1): boot jar module name
33 define _dexpreopt-boot-jar-remove-classes.dex
47 $(foreach b,$(DEXPREOPT_BOOT_JARS_MODULES),$(eval $(call _dexpreopt-boot-jar-remove-classes.dex,$(b))))
  /sdk/emulator/mksdcard/src/source/
mksdcard.c 60 static Byte s_boot_sector [ BYTES_PER_SECTOR ]; /* boot sector */
113 boot_sector_init( Bytes boot, Bytes info, Wide disk_size, const char* label )
124 POKEB(boot, 0xeb);
125 POKEB(boot+1, 0x5a);
126 POKEB(boot+2, 0x90);
127 strcpy( (char*)boot + 3, "MSWIN4.1" );
128 POKES( boot + 0x0b, BYTES_PER_SECTOR ); /* sector size */
129 POKEB( boot + 0xd, sectors_per_cluster ); /* sectors per cluster */
130 POKES( boot + 0xe, RESERVED_SECTORS ); /* reserved sectors before first FAT */
131 POKEB( boot + 0x10, NUM_FATS ); /* number of FATs *
    [all...]
  /art/oatdump/
Android.mk 49 dump-oat: dump-oat-core dump-oat-boot
69 .PHONY: dump-oat-boot-$(TARGET_ARCH)
71 dump-oat-boot-$(TARGET_ARCH): $(DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) $(OATDUMP)
73 --output=$(ART_DUMP_OAT_PATH)/boot.$(TARGET_ARCH).oatdump.txt --instruction-set=$(TARGET_ARCH)
74 @echo Output in $(ART_DUMP_OAT_PATH)/boot.$(TARGET_ARCH).oatdump.txt
78 dump-oat-boot-$(TARGET_2ND_ARCH): $(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) $(OATDUMP)
80 --output=$(ART_DUMP_OAT_PATH)/boot.$(TARGET_2ND_ARCH).oatdump.txt --instruction-set=$(TARGET_2ND_ARCH)
81 @echo Output in $(ART_DUMP_OAT_PATH)/boot.$(TARGET_2ND_ARCH).oatdump.txt
84 .PHONY: dump-oat-boot
85 dump-oat-boot: dump-oat-boot-$(TARGET_ARCH
    [all...]
  /external/iproute2/etc/iproute2/
rt_protos 7 3 boot
  /build/core/tasks/
boot_jars_package_check.mk 16 # Rules to check if classes in the boot jars are from the whitelisted packages.
23 intermediates := $(call intermediates-dir-for, PACKAGING, boot-jars-package-check,,COMMON)
38 .PHONY: check-boot-jars
39 check-boot-jars : $(stamp)
41 # Run check-boot-jars by default
42 droidcore : check-boot-jars
  /bootable/recovery/
recovery.cpp 110 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
116 * 8. main() calls reboot() to boot main system
122 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
133 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
139 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
144 * 9. main() calls reboot() to boot main system
186 struct bootloader_message boot; local
187 memset(&boot, 0, sizeof(boot));
188 get_bootloader_message(&boot); // this may fail, leaving a zeroed structur
255 struct bootloader_message boot; local
348 struct bootloader_message boot; local
    [all...]
  /hardware/intel/bootstub/
bootstub.spec 11 this package provides bootstub to create NAND boot image
21 mkdir -p $RPM_BUILD_ROOT/boot
22 install -m 755 bootstub $RPM_BUILD_ROOT/boot/
28 /boot/bootstub
  /external/genext2fs/
mkbootimg_ext2.sh 49 echo -e "to be the boot file system.\n"
52 echo " --kernel <kernel> The kernel to boot"
90 mkdir -p $TMPDIR/boot/grub
91 cp -f $GRUBCONF $TMPDIR/boot/grub/menu.lst
  /frameworks/base/cmds/bootanimation/
bootanimation_main.cpp 48 ALOGI_IF(noBootAnimation, "boot animation disabled");
54 // create the boot animation object
55 sp<BootAnimation> boot = new BootAnimation(); local
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar 
  /external/apache-harmony/jdwp/
Android.mk 77 # Waits for device to boot completely.
78 define wait-for-boot-complete
79 $(hide) echo "Wait for boot complete ..."
84 $(hide) echo "Boot complete"
94 $(call wait-for-boot-complete)
  /ndk/sources/host-tools/sed-4.2.1/
Makefile.am 14 EXTRA_DIST = BUGS THANKS COPYING.DOC README.boot \
  /build/target/board/generic_x86/
BoardConfig.mk 24 # Enable dex-preoptimization to speed up the first boot sequence
  /build/target/board/generic_x86_64/
BoardConfig.mk 30 # Enable dex-preoptimization to speed up the first boot sequence
  /device/asus/flo/
kickstart_checker.sh 4 if [ $(getprop ro.boot.baseband) == "mdm" ]; then
  /device/moto/shamu/
init.mmi.touch.sh 94 device_property=ro.boot.device
95 hwrev_property=ro.boot.hwrev
194 notice "Touch firmware config id at boot time $str_cfg_id_boot"
  /device/asus/fugu/
AndroidKernel.mk 61 $(hide) cp -f $(KERNEL_OUT_DIR)/arch/x86/boot/bzImage $@
93 $(PRODUCT_OUT)/boot.img: build_kernel

Completed in 640 milliseconds

1 2 3 4