HomeSort by relevance Sort by last modified time
    Searched refs:dex2oat (Results 1 - 16 of 16) sorted by null

  /build/target/product/
runtime_libart.mk 22 dex2oat \
27 dalvik.vm.image-dex2oat-Xms=64m \
28 dalvik.vm.image-dex2oat-Xmx=64m \
29 dalvik.vm.dex2oat-Xms=64m \
30 dalvik.vm.dex2oat-Xmx=512m \
  /art/test/118-noimage-dex2oat/
run 32 echo "Run -Xnoimage-dex2oat"
33 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat
36 echo "Run -Ximage-dex2oat"
37 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
  /art/test/119-noimage-patchoat/
run 27 echo "Run -Xnoimage-dex2oat -Xpatchoat:/system/bin/false"
28 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xpatchoat:${false_bin}
31 echo "Run -Ximage-dex2oat"
32 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
  /art/dex2oat/
Android.mk 22 dex2oat.cc
33 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libart-compiler,art/compiler,target,ndebug,$(dex2oat_arch)))
36 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libartd-compiler,art/compiler,target,debug,$(dex2oat_arch)))
39 # We always build dex2oat and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target.
41 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libart-compiler,art/compiler,host,ndebug))
44 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libartd-compiler,art/compiler,host,debug))
dex2oat.cc 103 UsageError("Usage: dex2oat [options]...");
242 class Dex2Oat {
244 static bool Create(Dex2Oat** p_dex2oat,
256 std::unique_ptr<Dex2Oat> dex2oat(new Dex2Oat(&compiler_options,
263 if (!dex2oat->CreateRuntime(runtime_options, instruction_set)) {
267 *p_dex2oat = dex2oat.release();
271 ~Dex2Oat() {
276 LOG(INFO) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_
833 static int dex2oat(int argc, char** argv) { function in namespace:art
    [all...]
  /build/core/
dex_preopt_libart.mk 6 DEX2OAT := $(HOST_OUT_EXECUTABLES)/dex2oat$(HOST_EXECUTABLE_SUFFIX)
9 # By default, do not run rerun dex2oat if the tool changes.
10 # Comment out the | to force dex2oat to rerun on after all changes.
14 DEX2OAT_DEPENDENCY += $(DEX2OAT)
35 DEX2OAT_IMAGE_XMS := $(call get-product-default-property,dalvik.vm.image-dex2oat-Xms)
36 DEX2OAT_IMAGE_XMX := $(call get-product-default-property,dalvik.vm.image-dex2oat-Xmx)
37 DEX2OAT_XMS := $(call get-product-default-property,dalvik.vm.dex2oat-Xms)
38 DEX2OAT_XMX := $(call get-product-default-property,dalvik.vm.dex2oat-Xmx)
88 define dex2oat-one-fil
    [all...]
dex_preopt.mk 2 # dexpreopt support - typically used on user builds to run dexopt (for Dalvik) or dex2oat (for ART) ahead of time
54 # Unconditionally include ART support because its used run dex2oat on the host for tests.
69 $(call dex2oat-one-file,$(1),$(2))
dex_preopt_libart_boot.mk 52 # Use dex2oat debug version for better error reporting
54 @echo "target dex2oat: $@ ($?)"
main.mk 383 ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.image-dex2oat-filter=verify-none
385 ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.dex2oat-filter=interpret-only
    [all...]
  /art/test/
Android.libarttest.mk 30 118-noimage-dex2oat/noimage-dex2oat.cc
Android.run-test.mk 320 # We need dex2oat and dalvikvm on the target as well as the core image.
    [all...]
  /art/
Android.mk 104 include $(art_path)/dex2oat/Android.mk
361 art-host: $(HOST_OUT_EXECUTABLES)/art $(HOST_OUT)/bin/dalvikvm32 $(HOST_OUT)/lib/libart.so $(HOST_OUT)/bin/dex2oat $(HOST_OUT)/bin/patchoat $(HOST_CORE_IMG_OUT) $(HOST_OUT)/lib/libjavacore.so $(HOST_OUT)/bin/dalvikvm
363 art-host: $(HOST_OUT_EXECUTABLES)/art $(HOST_OUT)/bin/dalvikvm64 $(HOST_OUT)/bin/dalvikvm32 $(HOST_OUT)/lib/libart.so $(HOST_OUT)/bin/dex2oat $(HOST_OUT)/bin/patchoat $(HOST_CORE_IMG_OUT) $(HOST_OUT)/lib/libjavacore.so $(HOST_OUT)/lib64/libjavacore.so $(HOST_OUT)/bin/dalvikvm
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/compiler/
Android.mk 273 $(TARGET_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE)
279 $(HOST_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE)
285 # We always build dex2oat and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target.
309 $(DEX2OAT): $(TARGET_OUT_SHARED_LIBRARIES)/libcompiler_rt.a
  /art/runtime/gc/space/
image_space.cc 159 std::string dex2oat(Runtime::Current()->GetCompilerExecutable());
160 arg_vector.push_back(dex2oat);
482 reason = "Image dex2oat disabled by -Xnoimage-dex2oat.";
572 *error_msg = "Not attempting to compile image because -Xnoimage-dex2oat";
    [all...]
  /external/sepolicy/
file_contexts 163 /system/bin/dex2oat u:object_r:dex2oat_exec:s0
164 # patchoat executable has (essentially) the same requirements as dex2oat.
  /art/runtime/
class_linker.cc 610 std::string dex2oat(Runtime::Current()->GetCompilerExecutable());
633 argv.push_back(dex2oat);
    [all...]

Completed in 119 milliseconds