Searched refs:boot_image (Results 1 – 9 of 9) sorted by relevance
/aosp12/build/make/tools/releasetools/ |
H A D | test_validate_target_files.py | 61 boot_image = os.path.join(input_tmp, 'IMAGES', 'boot.img') 62 self._generate_boot_image(boot_image) 76 boot_image = os.path.join(input_tmp, 'IMAGES', 'boot.img') 77 self._generate_boot_image(boot_image) 93 boot_image = os.path.join(input_tmp, 'IMAGES', 'boot.img') 94 self._generate_boot_image(boot_image) 97 with open(boot_image, 'r+b') as boot_fp:
|
H A D | add_img_to_target_files | 796 boot_image = None 804 boot_image = common.GetBootableImage( 807 if boot_image: 814 boot_image.WriteToDir(OPTIONS.input_tmp) 816 boot_image.AddToZip(output_zip) 860 output_zip, recovery_img=recovery_image, boot_img=boot_image) 865 output_zip, recovery_img=recovery_image, boot_img=boot_image)
|
H A D | add_img_to_target_files.py | 796 boot_image = None 804 boot_image = common.GetBootableImage( 807 if boot_image: 814 boot_image.WriteToDir(OPTIONS.input_tmp) 816 boot_image.AddToZip(output_zip) 860 output_zip, recovery_img=recovery_image, boot_img=boot_image) 865 output_zip, recovery_img=recovery_image, boot_img=boot_image)
|
H A D | test_common.py | 1873 boot_image = common.File("boot.img", self.boot_data) 1877 recovery_image, boot_image, self._info) 1885 boot_image = common.File("boot.img", self.boot_data) 1886 self._out_tmp_sink("boot.img", boot_image.data, "IMAGES") 1889 recovery_image, boot_image, self._info) 1895 recovery_image, boot_image, self._info)
|
/aosp12/art/tools/ |
H A D | compile-jar.py | 212 boot_image = os.path.expandvars( 222 boot_image = os.path.expandvars(":".join([ 231 extra += get_bcp_runtime_args(args.add_bcp, boot_image, args.arch) 234 extra.append("--boot-image={}".format(boot_image))
|
/aosp12/frameworks/native/cmds/installd/ |
H A D | run_dex2oat.cpp | 116 std::string boot_image; in PrepareBootImageFlags() local 118 boot_image = StringPrintf("--boot-image=%s", kJitZygoteImage); in PrepareBootImageFlags() 120 boot_image = MapPropertyToArg("dalvik.vm.boot-image", "--boot-image=%s"); in PrepareBootImageFlags() 122 AddArg(boot_image); in PrepareBootImageFlags()
|
/aosp12/art/imgdiag/ |
H A D | imgdiag_test.cc | 79 bool Exec(pid_t image_diff_pid, const std::string& boot_image, std::string* error_msg) { in Exec() argument 95 "--boot-image=" + boot_image in Exec()
|
/aosp12/art/libartbase/base/ |
H A D | file_utils_test.cc | 213 const std::string boot_image = GetApexDataBootImage(system_jar.c_str()); in TEST_F() local 214 EXPECT_EQ(GetArtApexData() + "/dalvik-cache/boot-disk.art", boot_image); in TEST_F() 218 const std::string boot_image_filename = GetSystemImageFilename(boot_image.c_str(), isa); in TEST_F()
|
/aosp12/art/runtime/gc/space/ |
H A D | image_space.cc | 1174 RelocationRange boot_image(image_header->GetBootImageBegin(), in RelocateInPlace() local 1195 VLOG(image) << "Boot image " << boot_image; in RelocateInPlace() 1197 const bool fixup_image = boot_image.Delta() != 0 || app_image_metadata.Delta() != 0 || in RelocateInPlace() 1206 ForwardObject forward_object(boot_image, app_image_objects); in RelocateInPlace() 1207 ForwardObject forward_metadata(boot_image, app_image_metadata); in RelocateInPlace() 1209 ForwardCode forward_code(boot_image, app_oat); in RelocateInPlace() 1228 ObjPtr<mirror::ObjectArray<mirror::Class>>::DownCast(boot_image.ToDest( in RelocateInPlace() 1293 image_header->RelocateBootImageReferences(boot_image.Delta()); in RelocateInPlace()
|