Searched refs:dex2oat (Results 1 - 6 of 6) sorted by relevance

/art/dex2oat/
H A DAndroid.mk22 dex2oat.cc
25 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libart-compiler,art/compiler,target,ndebug))
28 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libartd-compiler,art/compiler,target,debug))
32 # We always build dex2oat and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target.
34 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libart-compiler,art/compiler,host,ndebug))
37 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libartd-compiler,art/compiler,host,debug))
H A Ddex2oat.cc78 UsageError("Usage: dex2oat [options]...");
170 VLOG(compiler) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_)
268 timings.NewSplit("dex2oat OatWriter");
460 const char* reason = "dex2oat watch dog thread startup";
471 const char* reason = "dex2oat watch dog thread shutdown";
486 ::art::SetThreadName("dex2oat watch dog");
494 fprintf(stderr, "dex2oat%s %c %d %d %s\n",
521 const char* reason = "dex2oat watch dog thread waiting";
528 std::string message(StringPrintf("dex2oat did not finish after %d seconds",
566 static int dex2oat(in function in namespace:art
[all...]
/art/runtime/gc/space/
H A Dimage_space.cc57 std::string dex2oat(GetAndroidRoot());
58 dex2oat += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
59 arg_vector.push_back(dex2oat);
101 // fork and exec dex2oat
109 execv(dex2oat.c_str(), &char_args[0]);
111 PLOG(FATAL) << "execv(" << dex2oat << ") failed";
118 // wait for dex2oat to finish
126 LOG(ERROR) << dex2oat << " failed: " << command_line;
/art/compiler/
H A DAndroid.mk220 $(TARGET_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE)
226 $(HOST_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE)
239 # We always build dex2oat and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target.
/art/
H A DAndroid.mk87 include $(art_path)/dex2oat/Android.mk
/art/runtime/
H A Dclass_linker.cc547 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
548 const char* dex2oat = dex2oat_string.c_str(); local
591 // fork and exec dex2oat
600 VLOG(class_linker) << dex2oat
614 execl(dex2oat, dex2oat,
629 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
632 // wait for dex2oat to finish
640 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
2612 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat'
[all...]

Completed in 512 milliseconds