/system/sepolicy/prebuilts/api/29.0/public/ |
D | device.te | 74 # Documented at https://source.android.com/devices/bootloader/partitions-images 78 # Documented at https://source.android.com/devices/bootloader/partitions-images 82 # Documented at https://source.android.com/devices/bootloader/partitions-images 86 # Documented at https://source.android.com/devices/bootloader/partitions-images 90 # Documented at https://source.android.com/devices/bootloader/partitions-images 99 # Documented at https://source.android.com/devices/bootloader/partitions-images 103 # Documented at https://source.android.com/devices/bootloader/partitions-images
|
/system/sepolicy/public/ |
D | device.te | 74 # Documented at https://source.android.com/devices/bootloader/partitions-images 78 # Documented at https://source.android.com/devices/bootloader/partitions-images 82 # Documented at https://source.android.com/devices/bootloader/partitions-images 86 # Documented at https://source.android.com/devices/bootloader/partitions-images 90 # Documented at https://source.android.com/devices/bootloader/partitions-images 99 # Documented at https://source.android.com/devices/bootloader/partitions-images 103 # Documented at https://source.android.com/devices/bootloader/partitions-images
|
/system/extras/partition_tools/ |
D | lpmake.cc | 111 std::map<std::string, std::string> images; in main() local 184 images[partition_name] = file; in main() 350 if (!images.empty()) { in main() 352 if (!WriteToImageFile(output_path.c_str(), *metadata.get(), block_size, images, in main() 357 if (!WriteSplitImageFiles(output_path, *metadata.get(), block_size, images, in main()
|
D | README.md | 5 …-line tool for generating a "super" partition image. It can currently generate two types of images: 6 * Sparse images, for traditional fastboot. 7 * Metadata-only images, for the lpflash utility. 23 …ess than or equal to the partition size. This option is only available when creating sparse images.
|
/system/core/fs_mgr/liblp/ |
D | images.cpp | 102 const std::map<std::string, std::string>& images, bool sparsify) in ImageBuilder() argument 107 images_(images) { in ImageBuilder() 442 const std::map<std::string, std::string>& images, bool sparsify) { in WriteToImageFile() argument 443 ImageBuilder builder(metadata, block_size, images, sparsify); in WriteToImageFile() 448 uint32_t block_size, const std::map<std::string, std::string>& images, in WriteSplitImageFiles() argument 450 ImageBuilder builder(metadata, block_size, images, sparsify); in WriteSplitImageFiles()
|
D | images.h | 41 const std::map<std::string, std::string>& images, bool sparsify);
|
D | Android.bp | 37 "images.cpp",
|
D | io_test.cpp | 607 const auto& images = sparse.device_images(); in TEST() local 608 ASSERT_EQ(images.size(), static_cast<size_t>(1)); in TEST() 612 int ret = sparse_file_write(images[0].get(), fd.get(), false, false, false); in TEST()
|
/system/core/fs_mgr/liblp/include/liblp/ |
D | liblp.h | 76 const std::map<std::string, std::string>& images, bool sparsify); 87 uint32_t block_size, const std::map<std::string, std::string>& images,
|
/system/sepolicy/prebuilts/api/27.0/public/ |
D | dex2oat.te | 16 # Read symlinks in /data/dalvik-cache. This is required for PIC mode boot images, where 53 # Create and read symlinks in /data/ota/dalvik-cache. This is required for PIC mode boot images, 57 # It would be nice to tie this down, but currently, because of how images are written, we can't
|
/system/sepolicy/prebuilts/api/26.0/public/ |
D | dex2oat.te | 16 # Read symlinks in /data/dalvik-cache. This is required for PIC mode boot images, where 53 # Create and read symlinks in /data/ota/dalvik-cache. This is required for PIC mode boot images, 57 # It would be nice to tie this down, but currently, because of how images are written, we can't
|
/system/sepolicy/prebuilts/api/28.0/public/ |
D | dex2oat.te | 16 # Read symlinks in /data/dalvik-cache. This is required for PIC mode boot images, where 53 # Create and read symlinks in /data/ota/dalvik-cache. This is required for PIC mode boot images, 57 # It would be nice to tie this down, but currently, because of how images are written, we can't
|
/system/sepolicy/private/ |
D | dex2oat.te | 16 # Read symlinks in /data/dalvik-cache. This is required for PIC mode boot images, where 61 # Create and read symlinks in /data/ota/dalvik-cache. This is required for PIC mode boot images, 65 # It would be nice to tie this down, but currently, because of how images are written, we can't
|
D | gsid.te | 41 # When installing images to an sdcard, gsid needs to be able to stat() the 45 # When installing images to an sdcard, gsid must bypass sdcardfs and install 61 # gsid needs to store images on /data, but cannot use file I/O. If it did, the
|
D | otapreopt_chroot.te | 10 # This is required to mount /vendor and mount/unmount ext4 images from 70 # devices used by ext4 images from APEX packages).
|
/system/sepolicy/prebuilts/api/29.0/private/ |
D | dex2oat.te | 16 # Read symlinks in /data/dalvik-cache. This is required for PIC mode boot images, where 61 # Create and read symlinks in /data/ota/dalvik-cache. This is required for PIC mode boot images, 65 # It would be nice to tie this down, but currently, because of how images are written, we can't
|
D | gsid.te | 41 # When installing images to an sdcard, gsid needs to be able to stat() the 45 # When installing images to an sdcard, gsid must bypass sdcardfs and install 61 # gsid needs to store images on /data, but cannot use file I/O. If it did, the
|
D | otapreopt_chroot.te | 10 # This is required to mount /vendor and mount/unmount ext4 images from 70 # devices used by ext4 images from APEX packages).
|
/system/core/fastboot/ |
D | fastboot.cpp | 138 static Image images[] = { variable 185 for (size_t i = 0; i < arraysize(images); ++i) { in find_item() 186 if (images[i].nickname && item == images[i].nickname) { in find_item() 187 return find_item_given_name(images[i].img_name); in find_item() 745 for (size_t i = 0; i < arraysize(images); ++i) { in HandlePartitionExists() 746 if (images[i].nickname && images[i].nickname == partition_name) { in HandlePartitionExists() 747 images[i].optional_if_no_image = false; in HandlePartitionExists() 1202 void FlashImages(const std::vector<std::pair<const Image*, std::string>>& images); 1286 for (size_t i = 0; i < arraysize(images); ++i) { in CollectImages() 1288 if (images[i].IsSecondary()) { in CollectImages() [all …]
|
/system/core/fastboot/fuzzy_fastboot/ |
D | README.md | 100 will internally expand the image into the individual images for each underlying 127 valid and invalid test packed images for flashing this particular pseudo partition. 128 Additionally, one should specify a folder with all the partitions' images 130 will allow Fuzzy Fastboot to validate the images are unpacking correctly, and 138 …path=dir. This folder should have the all the images that packed unpacks to. The name of each of t… 276 …ot will look for files referenced in the XML. This includes all the test images and the referenced… 356 could be formed. These means creating images with malformed headers, illegal chars, 387 …ests*: Currently there are no tests that tests sparse images. Both well-formed and malicious image…
|
/system/core/fs_mgr/ |
D | README.overlayfs.md | 13 system partition images right-sized, and with filesystem that have 93 will have a negative impact on the overall right-sizing of images
|
/system/core/healthd/ |
D | Android.mk | 198 LOCAL_MODULE_PATH := $$(TARGET_ROOT_OUT)/res/images/charger
|
/system/tools/xsdc/ |
D | README.md | 47 tag to be deleted. Partners are not allowed to create new vendor images using
|
/system/libufdt/utils/ |
D | README.md | 185 For `dtb`/`dtbo` images, use the `dump` command to print the information in
|
/system/update_engine/ |
D | update_metadata.proto | 154 // special image types such as nplusone images. 243 // different keys. If the update_engine daemon requires vendor-signed images 332 // old_image_info will only be present for delta images.
|