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/runtime/
Dintern_table.cc170 gc::space::ImageSpace* image = Runtime::Current()->GetHeap()->GetImageSpace(); in LookupStringFromImage() local
171 if (image == NULL) { in LookupStringFromImage()
174 mirror::Object* root = image->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches); in LookupStringFromImage()
184 mirror::String* image = dex_cache->GetResolvedString(string_idx); in LookupStringFromImage() local
185 if (image != NULL) { in LookupStringFromImage()
186 return image; in LookupStringFromImage()
224 mirror::String* image = LookupStringFromImage(s); in Insert() local
225 if (image != NULL) { in Insert()
226 return InsertStrong(image); in Insert()
248 mirror::String* image = LookupStringFromImage(s); in Insert() local
[all …]
Dimage.h95 static std::string GetOatLocationFromImageLocation(const std::string& image) { in GetOatLocationFromImageLocation() argument
96 std::string oat_filename = image; in GetOatLocationFromImageLocation()
DAndroid.mk75 image.cc \
Dclass_linker.cc3369 gc::space::ImageSpace* image = Runtime::Current()->GetHeap()->GetImageSpace(); in GetImageDexCaches() local
3370 CHECK(image != nullptr); in GetImageDexCaches()
3371 mirror::Object* root = image->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches); in GetImageDexCaches()
/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/patchoat/
Dpatchoat.h56 PatchOat(MemMap* image, gc::accounting::ContinuousSpaceBitmap* bitmap, in PatchOat() argument
58 : image_(image), bitmap_(bitmap), heap_(heap), in PatchOat()
60 PatchOat(ElfFile* oat_file, MemMap* image, gc::accounting::ContinuousSpaceBitmap* bitmap, in PatchOat() argument
62 : oat_file_(oat_file), image_(image), bitmap_(bitmap), heap_(heap), in PatchOat()
Dpatchoat.cc164 std::unique_ptr<MemMap> image(MemMap::MapFile(image_len, PROT_READ | PROT_WRITE, MAP_PRIVATE, in Patch() local
168 if (image.get() == nullptr) { in Patch()
174 PatchOat p(image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(), in Patch()
253 std::unique_ptr<MemMap> image(MemMap::MapFile(image_len, PROT_READ | PROT_WRITE, MAP_PRIVATE, in Patch() local
257 if (image.get() == nullptr) { in Patch()
270 PatchOat p(elf.release(), image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(), in Patch()
/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/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.cc144 std::string image("-Ximage:"); in TEST_F() local
145 image.append(image_location.GetFilename()); in TEST_F()
146 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.cc351 bool image, in CreateOatFile() argument
385 image, in CreateOatFile()
1085 bool image = (!image_filename.empty()); in dex2oat() local
1086 if (!image && boot_image_filename.empty()) { in dex2oat()
1096 if (image_classes_filename != nullptr && !image) { in dex2oat()
1150 } else if (image) { in dex2oat()
1308 } else if (image) { in dex2oat()
1367 if (!image && compiler_options->IsCompilationEnabled()) { in dex2oat()
1404 image, in dex2oat()
1469 if (image) { in dex2oat()
/art/test/
Drun-test113 image="$1"
114 run_args="${run_args} --image $image"
/art/compiler/driver/
Dcompiler_driver.h106 bool image, std::set<std::string>* image_classes,
Dcompiler_driver.cc333 … bool image, std::set<std::string>* image_classes, size_t thread_count, in CompilerDriver() argument
345 image_(image), in CompilerDriver()