/external/yaffs2/yaffs2/direct/ |
yaffs_ramdisk.c | 59 static yramdisk_Device ramdisk; variable 78 ramdisk.nBlocks = (SIZE_IN_MB * 1024 * 1024)/(16 * 1024); 80 ramdisk.block = YMALLOC(sizeof(yramdisk_Block *) * ramdisk.nBlocks); 82 if(!ramdisk.block) return 0; 84 for(i=0; i <ramdisk.nBlocks; i++) 86 ramdisk.block[i] = NULL; 89 for(i=0; i <ramdisk.nBlocks && !fail; i++) 91 if((ramdisk.block[i] = YMALLOC(sizeof(yramdisk_Block))) == 0) 106 YFREE(ramdisk.block[i]) [all...] |
yaffs_flashif.c | 55 static yflash_Device ramdisk; variable 73 ramdisk.nBlocks = (SIZE_IN_MB * 1024 * 1024)/(16 * 1024); 75 ramdisk.block = YMALLOC(sizeof(yflash_Block *) * ramdisk.nBlocks); 77 if(!ramdisk.block) return 0; 79 for(i=0; i <ramdisk.nBlocks; i++) 81 ramdisk.block[i] = NULL; 84 for(i=0; i <ramdisk.nBlocks && !fail; i++) 86 if((ramdisk.block[i] = YMALLOC(sizeof(yflash_Block))) == 0) 101 YFREE(ramdisk.block[i]) [all...] |
/hardware/intel/bootstub/ |
bootimg.h | 68 ** | ramdisk | m pages 78 ** 1. kernel and ramdisk are required (size != 0) 80 ** 3. load each element (kernel, ramdisk, second) at 90 void *ramdisk, unsigned ramdisk_size,
|
/system/core/fastbootd/ |
bootimg.h | 69 ** | ramdisk | m pages 79 ** 1. kernel and ramdisk are required (size != 0) 81 ** 3. load each element (kernel, ramdisk, second) at 91 void *ramdisk, unsigned ramdisk_size,
|
/build/core/tasks/ |
factory_ramdisk.mk | 37 define install-one-factory-ramdisk-module 57 $(foreach d,$(_fr_dests),$(call install-one-factory-ramdisk-module,$(d),$(_fr_m_built))) \ 89 $(MKBOOTIMG) --kernel $(TARGET_RAMDISK_KERNEL) --ramdisk $(INSTALLED_FACTORY_RAMDISK_FS) \
|
sdk-addon.mk | 68 $(addon_dir_img):$(BUILT_RAMDISK_TARGET):images/$(TARGET_CPU_ABI)/ramdisk.img \
|
/system/core/fastboot/ |
bootimg.c | 41 void *ramdisk, unsigned ramdisk_size, unsigned ramdisk_offset, 83 ramdisk, ramdisk_size);
|
fastboot.c | 65 void *ramdisk, unsigned ramdisk_size, unsigned ramdisk_offset, 298 " boot <kernel> [ <ramdisk> [ <second> ] ] download and boot kernel\n" 299 " flash:raw boot <kernel> [ <ramdisk> [ <second> ] ] create bootimage and \n" 327 void *load_bootable_image(const char *kernel, const char *ramdisk, 351 if(ramdisk) { 352 fprintf(stderr, "cannot boot a boot.img *and* ramdisk\n"); 360 if(ramdisk) { 361 rdata = load_file(ramdisk, &rsize); 363 fprintf(stderr,"cannot load '%s': %s\n", ramdisk, strerror(errno)); [all...] |
/external/genext2fs/ |
mkbootimg_ext2.sh | 4 RAMDISK= 18 --ramdisk) 19 RAMDISK=$2 53 echo " --ramdisk <ramdisk> The ramdisk to be used" 71 if [ -z "$KERNEL" -o -z "$RAMDISK" -o -z "$GENEXT2FS" -o -z "$TMPDIR" -o \ 77 if ! [ -x "$GENEXT2FS" -a -f "$RAMDISK" -a -f "$KERNEL" ]; then 87 cp -f $RAMDISK $TMPDIR/ramdisk [all...] |
/external/qemu/android/filesystems/testing/ |
create_ramdisk_test_data.sh | 21 TMPDIR=/tmp/$USER-ramdisk-test-data
|
/external/qemu/android/ |
main-common.c | 341 if (!opts->ramdisk) { 342 opts->ramdisk = _getSdkSystemImage(opts->sysdir, "-ramdisk", "ramdisk.img"); 343 D("autoconfig: -ramdisk %s", opts->ramdisk);
|
cmdline-options.h | 69 CFG_PARAM( ramdisk, "<file>", "ramdisk image (default <system>/ramdisk.img" )
|
main.c | 537 /* opts->ramdisk is never NULL (see createAVD) here */ 538 if (opts->ramdisk) { 539 reassign_string(&hw->disk_ramdisk_path, opts->ramdisk); 543 D("autoconfig: -ramdisk %s", hw->disk_ramdisk_path); [all...] |
/bionic/libc/kernel/uapi/asm-arm/asm/ |
setup.h | 132 struct tag_ramdisk ramdisk; member in union:tag::__anon189
|
/bootable/recovery/ |
Android.mk | 82 # This binary is in the recovery ramdisk, which is otherwise a copy of root. 85 # TODO: Build the ramdisk image in a more principled way.
|
/development/ndk/platforms/android-L/arch-arm/include/asm/ |
setup.h | 132 struct tag_ramdisk ramdisk; member in union:tag::__anon1837
|
/external/kernel-headers/original/uapi/asm-arm/asm/ |
setup.h | 61 /* describes how the ramdisk will be used in kernel */ 66 __u32 size; /* decompressed ramdisk size in _kilo_ bytes */ 70 /* describes where the compressed ramdisk image lives (virtual address) */ 77 /* describes where the compressed ramdisk image lives (physical address) */ 82 __u32 size; /* size of compressed ramdisk image in bytes */ 152 struct tag_ramdisk ramdisk; member in union:tag::__anon27373
|
/prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/asm/ |
setup.h | 132 struct tag_ramdisk ramdisk; member in union:tag::__anon75920
|
/build/core/ |
Makefile | 443 # the ramdisk 450 BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img 458 .PHONY: ramdisk-nodeps 459 ramdisk-nodeps: $(MKBOOTFS) | $(MINIGZIP) 470 --ramdisk $(INSTALLED_RAMDISK_TARGET) 541 # can produce a bootimage, though, and emulator targets need the ramdisk 542 # instead. Fake it out by calling the ramdisk the bootimage. 750 recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img [all...] |
main.mk | 81 ramdisk-nodeps \ 848 .PHONY: ramdisk 849 ramdisk: $(INSTALLED_RAMDISK_TARGET) [all...] |
/external/qemu/android/qemu-launcher/ |
emulator-qemu.cpp | 337 /* opts->ramdisk is never NULL (see createAVD) here */ 338 if (opts->ramdisk) { 339 reassign_string(&hw->disk_ramdisk_path, opts->ramdisk); 343 D("autoconfig: -ramdisk %s", hw->disk_ramdisk_path); 725 // Ramdisk
|
/development/build/ |
sdk.atree | 202 ramdisk.img system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/ramdisk.img [all...] |