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

  /art/dex2oat/
dex2oat.cc 78 UsageError("Usage: dex2oat [options]...");
152 class Dex2Oat {
154 static bool Create(Dex2Oat** p_dex2oat,
164 *p_dex2oat = new Dex2Oat(Runtime::Current(), compiler_backend, instruction_set, thread_count);
168 ~Dex2Oat() {
170 VLOG(compiler) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_)
268 timings.NewSplit("dex2oat OatWriter");
327 explicit Dex2Oat(Runtime* runtime,
399 DISALLOW_IMPLICIT_CONSTRUCTORS(Dex2Oat);
460 const char* reason = "dex2oat watch dog thread startup"
566 static int dex2oat(int argc, char** argv) { function in namespace:art
    [all...]
  /art/runtime/
class_linker.cc 547 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;
    [all...]

Completed in 311 milliseconds