Home
last modified time | relevance | path

Searched refs:image (Results 1 – 19 of 19) sorted by relevance

/art/test/119-noimage-patchoat/
Dexpected.txt2 Has image is false, is image dex2oat enabled is false.
4 Has image is true, is image dex2oat enabled is true.
6 Has image is true, is image dex2oat enabled is true.
Dinfo.txt1 Test that disables patchoat'ing the image.
/art/test/118-noimage-dex2oat/
Dexpected.txt2 Has image is false, is image dex2oat enabled is false, is BOOTCLASSPATH on disk is false.
4 Has image is true, is image dex2oat enabled is true, is BOOTCLASSPATH on disk is true.
6 Has image is true, is image dex2oat enabled is true, is BOOTCLASSPATH on disk is true.
Dinfo.txt1 Test that disables dex2oat'ing the image.
/art/build/
DAndroid.oat.mk33 --image-classes=$$(PRELOADED_CLASSES) $$(addprefix --dex-file=,$$(HOST_CORE_DEX_FILES)) \
35 --oat-location=$$($(1)HOST_CORE_OAT) --image=$$($(1)HOST_CORE_IMG_OUT) \
56 --image-classes=$$(PRELOADED_CLASSES) $$(addprefix --dex-file=,$$(TARGET_CORE_DEX_FILES)) \
58 --oat-location=$$($(1)TARGET_CORE_OAT) --image=$$($(1)TARGET_CORE_IMG_OUT) \
/art/runtime/
Dintern_table.cc181 gc::space::ImageSpace* image = Runtime::Current()->GetHeap()->GetImageSpace(); in LookupStringFromImage() local
182 if (image == nullptr) { in LookupStringFromImage()
185 mirror::Object* root = image->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches); in LookupStringFromImage()
195 mirror::String* image = dex_cache->GetResolvedString(string_idx); in LookupStringFromImage() local
196 if (image != nullptr) { in LookupStringFromImage()
197 return image; in LookupStringFromImage()
232 mirror::String* image = LookupStringFromImage(s); in Insert() local
233 if (image != nullptr) { in Insert()
234 return is_strong ? InsertStrong(image) : InsertWeak(image); in Insert()
Dimage.h96 static std::string GetOatLocationFromImageLocation(const std::string& image) { in GetOatLocationFromImageLocation() argument
97 std::string oat_filename = image; in GetOatLocationFromImageLocation()
DAndroid.mk75 image.cc \
Dclass_linker.cc3393 gc::space::ImageSpace* image = Runtime::Current()->GetHeap()->GetImageSpace(); in GetImageDexCaches() local
3394 CHECK(image != nullptr); in GetImageDexCaches()
3395 mirror::Object* root = image->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches); in GetImageDexCaches()
/art/oatdump/
DAndroid.mk57 $(OATDUMP) --image=$(HOST_CORE_IMG_LOCATION) --output=$(ART_DUMP_OAT_PATH)/core.host.oatdump.txt
64 $(OATDUMP) --image=$(TARGET_CORE_IMG_LOCATION) \
72 $(OATDUMP) --image=$(DEFAULT_DEX_PREOPT_BUILT_IMAGE_LOCATION) \
79 $(OATDUMP) --image=$(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_LOCATION) \
/art/patchoat/
Dpatchoat.h64 PatchOat(InstructionSet isa, MemMap* image, gc::accounting::ContinuousSpaceBitmap* bitmap, in PatchOat() argument
66 : image_(image), bitmap_(bitmap), heap_(heap), in PatchOat()
68 PatchOat(InstructionSet isa, ElfFile* oat_file, MemMap* image, in PatchOat() argument
71 : oat_file_(oat_file), image_(image), bitmap_(bitmap), heap_(heap), in PatchOat()
Dpatchoat.cc169 std::unique_ptr<MemMap> image(MemMap::MapFile(image_len, PROT_READ | PROT_WRITE, MAP_PRIVATE, in Patch() local
173 if (image.get() == nullptr) { in Patch()
179 PatchOat p(isa, image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(), in Patch()
264 std::unique_ptr<MemMap> image(MemMap::MapFile(image_len, PROT_READ | PROT_WRITE, MAP_PRIVATE, in Patch() local
268 if (image.get() == nullptr) { in Patch()
301 PatchOat p(isa, elf.release(), image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(), in Patch()
/art/runtime/gc/space/
Dimage_space.h46 static ImageSpace* Create(const char* image, InstructionSet image_isa, std::string* error_msg)
135 OatFile* OpenOatFile(const char* image, std::string* error_msg) const
/art/compiler/
Dimage_test.cc147 std::string image("-Ximage:"); in TEST_F() local
148 image.append(image_location.GetFilename()); in TEST_F()
149 options.push_back(std::make_pair(image.c_str(), reinterpret_cast<void*>(NULL))); in TEST_F()
/art/
DAndroid.mk320 --boot-image=$(DEFAULT_DEX_PREOPT_BUILT_IMAGE) --dex-file=$(PRODUCT_OUT)/$(1) \
399 adb shell setprop dalvik.vm.image-dex2oat-filter ""
409 adb shell setprop dalvik.vm.image-dex2oat-filter ""
419 adb shell setprop dalvik.vm.image-dex2oat-filter ""
429 adb shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
439 adb shell setprop dalvik.vm.image-dex2oat-filter "interpret-only"
449 adb shell setprop dalvik.vm.image-dex2oat-filter "verify-none"
/art/dex2oat/
Ddex2oat.cc360 bool image, in CreateOatFile() argument
396 image, in CreateOatFile()
1140 bool image = (!image_filename.empty()); in dex2oat() local
1141 if (!image && boot_image_filename.empty()) { in dex2oat()
1151 if (image_classes_filename != nullptr && !image) { in dex2oat()
1163 if (compiled_classes_filename != nullptr && !image) { in dex2oat()
1217 } else if (image) { in dex2oat()
1408 } else if (image) { in dex2oat()
1430 } else if (image) { in dex2oat()
1495 if (!UseSwap(image, dex_files)) { in dex2oat()
[all …]
/art/test/
Drun-test113 image="$1"
114 run_args="${run_args} --image $image"
/art/compiler/driver/
Dcompiler_driver.h110 bool image, std::set<std::string>* image_classes,
Dcompiler_driver.cc338 bool image, std::set<std::string>* image_classes, in CompilerDriver() argument
354 image_(image), in CompilerDriver()