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

1 2 3 4 5 6 7 8 91011>>

  /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
  /device/lge/hammerhead/
init.hammerhead.diag.rc.userdebug 3 on boot
  /bootable/recovery/etc/META-INF/com/google/android/
update-script 5 format BOOT:
8 write_raw_image PACKAGE:boot.img BOOT:
  /development/tools/labpretest/nexusone/
custom_flash.sh 6 # used for flashing boot image on nexusone
  /device/asus/fugu/
init.fugu.diag.rc.userdebug 3 on boot
recovery.fstab 1 /dev/block/by-name/boot /boot emmc defaults defaults
  /build/core/
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_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...]
  /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...]
  /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
  /external/qemu/distrib/sdl-1.2.15/
README.BeOS 7 By default it is installed in /boot/develop/tools/gnupro/{bin,lib,etc.}
9 Once you install SDL, you need to copy libSDL.so to /boot/home/config/lib,
  /external/iproute2/etc/iproute2/
rt_protos 7 3 boot
  /external/qemu/android/kernel/
kernel_utils_unittest.cpp 88 { "Linux kernel x86 boot executable raw image, version 3.10.0+",
91 { "Linux kernel x86 boot executable bzImage, 3.10.0+",
94 { "Linux kernel x86 boot executable bzImage, version 2.6.29 (foo...)",
98 { "Linux kernel x86 boot executable bzImage, version 3.4.1 (foo...)",
102 { "Linux kernel x86 boot executable bzImage, version 3.10.0+",
106 { "Linux kernel x86 boot executable bzImage, version 3.40.0",
110 { "Linux kernel x86 boot executable bzImage, version 4.0.9",
  /external/yaffs2/yaffs2/direct/
dtest.c 629 yaffs_mount("/boot");
634 printf("\nDirectory look-up of /boot\n");
635 dumpDir("/boot");
647 f = yaffs_open("/boot/b1", O_RDONLY,0);
649 printf("open /boot/b1 readonly, f=%d\n",f);
651 f = yaffs_open("/boot/b1", O_CREAT,S_IREAD | S_IWRITE);
653 printf("open /boot/b1 O_CREAT, f=%d\n",f);
663 f = yaffs_open("/boot/b1", O_RDWR,0);
665 printf("open /boot/b1 O_RDWR,f=%d\n",f);
701 copy_in_a_file("/boot/yyfile","xxx")
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
SystemClock_Delegate.java 37 * Returns milliseconds since boot, not counting time spent in deep sleep.
41 * @return milliseconds of non-sleep uptime since boot.
49 * Returns milliseconds since boot, including time spent in sleep.
51 * @return elapsed milliseconds since boot.
59 * Returns nanoseconds since boot, including time spent in sleep.
61 * @return elapsed nanoseconds since boot.
  /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/qemu/android/
boot-properties.c 13 #include "android/boot-properties.h"
33 * be set on boot in the emulated system.
69 /* Clears all existing boot properties
88 /* Appends a new boot property to the end of the internal list.
121 D("Adding boot property: '%.*s' = '%.*s'",
142 dwarning("boot property name too long: '%.*s'",
146 dwarning("boot property value too long: '%.*s'",
150 dwarning("boot property name contains invalid chars: %.*s",
197 /* Loads a single boot property from a snapshot file
225 D("%s: load failed: cannot add boot property (details follow)\n"
    [all...]
boot-properties.h 16 /* Manage the set of boot system properties.
17 * See the documentation for the 'boot-properties' service
28 /* record a new boot system property, this must be performed before the
42 /* init the boot property QEMUD service. This must be performed before
  /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
  /ndk/sources/host-tools/sed-4.2.1/
README 11 The file README.boot gives instructions for making a "bootstrap"
  /build/tools/releasetools/
make_recovery_patch 39 boot_img = common.GetBootableImage("boot.img", "boot.img",
40 input_dir, "BOOT")

Completed in 466 milliseconds

1 2 3 4 5 6 7 8 91011>>