Searched refs:dex2oat (Results 1 – 15 of 15) sorted by relevance
/art/test/119-noimage-patchoat/ |
D | expected.txt | 1 Run -Xnoimage-dex2oat -Xpatchoat:/system/bin/false 2 Has image is false, is image dex2oat enabled is false. 3 Run -Ximage-dex2oat 4 Has image is true, is image dex2oat enabled is true. 6 Has image is true, is image dex2oat enabled is true.
|
D | run | 28 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xpatchoat:${false_bin} 32 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
|
/art/test/118-noimage-dex2oat/ |
D | expected.txt | 1 Run -Xnoimage-dex2oat 2 Has image is false, is image dex2oat enabled is false, is BOOTCLASSPATH on disk is false. 3 Run -Ximage-dex2oat 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.
|
D | run | 33 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat 37 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
|
D | info.txt | 1 Test that disables dex2oat'ing the image.
|
/art/dex2oat/ |
D | Android.mk | 22 dex2oat.cc 33 …$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libart-compiler,art/comp… 36 …$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libartd-compiler,art/com… 41 …$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libart-compiler,art/compiler,host,… 44 …$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libartd-compiler,art/compiler,host…
|
D | dex2oat.cc | 256 std::unique_ptr<Dex2Oat> dex2oat(new Dex2Oat(&compiler_options, in Create() local 263 if (!dex2oat->CreateRuntime(runtime_options, instruction_set)) { in Create() 267 *p_dex2oat = dex2oat.release(); in Create() 833 static int dex2oat(int argc, char** argv) { in dex2oat() function 1378 std::unique_ptr<Dex2Oat> dex2oat(p_dex2oat); in dex2oat() local 1395 image_classes.reset(dex2oat->ReadImageClassesFromZip(image_classes_zip_filename, in dex2oat() 1399 image_classes.reset(dex2oat->ReadImageClassesFromFile(image_classes_filename)); in dex2oat() 1417 compiled_classes.reset(dex2oat->ReadImageClassesFromZip(compiled_classes_zip_filename, in dex2oat() 1421 compiled_classes.reset(dex2oat->ReadImageClassesFromFile(compiled_classes_filename)); in dex2oat() 1541 std::unique_ptr<const CompilerDriver> compiler(dex2oat->CreateOatFile(boot_image_option, in dex2oat() [all …]
|
/art/test/117-nopatchoat/ |
D | expected.txt | 1 Run without dex2oat/patchoat 2 dex2oat & patchoat are disabled, has oat is true, has executable oat is expected. 5 dex2oat & patchoat are enabled, has oat is true, has executable oat is expected. 8 dex2oat & patchoat are enabled, has oat is true, has executable oat is expected.
|
/art/test/116-nodex2oat/ |
D | expected.txt | 2 Has oat is false, is dex2oat enabled is false. 4 Has oat is true, is dex2oat enabled is true. 6 Has oat is true, is dex2oat enabled is true.
|
D | info.txt | 1 Test that disables dex2oat'ing the application.
|
/art/ |
D | Android.mk | 104 include $(art_path)/dex2oat/Android.mk 361 …art $(HOST_OUT)/bin/dalvikvm32 $(HOST_OUT)/lib/libart.so $(HOST_OUT)/bin/dex2oat $(HOST_OUT)/bin/p… 363 …m64 $(HOST_OUT)/bin/dalvikvm32 $(HOST_OUT)/lib/libart.so $(HOST_OUT)/bin/dex2oat $(HOST_OUT)/bin/p… 398 adb shell setprop dalvik.vm.dex2oat-filter "" 399 adb shell setprop dalvik.vm.image-dex2oat-filter "" 408 adb shell setprop dalvik.vm.dex2oat-filter "" 409 adb shell setprop dalvik.vm.image-dex2oat-filter "" 418 adb shell setprop dalvik.vm.dex2oat-filter "interpret-only" 419 adb shell setprop dalvik.vm.image-dex2oat-filter "" 428 adb shell setprop dalvik.vm.dex2oat-filter "interpret-only" [all …]
|
/art/test/ |
D | Android.libarttest.mk | 30 118-noimage-dex2oat/noimage-dex2oat.cc
|
/art/compiler/ |
D | Android.mk | 273 $(TARGET_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE) 279 $(HOST_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE)
|
/art/runtime/gc/space/ |
D | image_space.cc | 159 std::string dex2oat(Runtime::Current()->GetCompilerExecutable()); in GenerateImage() local 160 arg_vector.push_back(dex2oat); in GenerateImage()
|
/art/runtime/ |
D | class_linker.cc | 610 std::string dex2oat(Runtime::Current()->GetCompilerExecutable()); in GenerateOatFile() local 633 argv.push_back(dex2oat); in GenerateOatFile()
|