MCPcopy Create free account
hub / github.com/FeJQ/AUPK / GetCompilerExecutable

Method GetCompilerExecutable

art/runtime/runtime.cc:560–567  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

558}
559
560std::string Runtime::GetCompilerExecutable() const {
561 if (!compiler_executable_.empty()) {
562 return compiler_executable_;
563 }
564 std::string compiler_executable(GetAndroidRoot());
565 compiler_executable += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
566 return compiler_executable;
567}
568
569bool Runtime::Start() {
570 VLOG(startup) << "Runtime::Start entering";

Callers

nothing calls this directly

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected