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

  /art/dex2oat/
dex2oat_test.cc 77 int status = Dex2Oat(args, error_msg);
137 int Dex2Oat(const std::vector<std::string>& dex2oat_args, std::string* error_msg) {
143 *error_msg = "No image location found for Dex2Oat.";
203 // We need dex2oat to actually log things.
294 // Check whether the dex2oat run was really successful.
309 // On the host, we can get the dex2oat output. Here, look for "dex2oat took."
311 EXPECT_NE(output_.find("dex2oat took"), std::string::npos) << output_;
380 std::regex native_alloc_regex("dex2oat took.*native alloc=[^ ]+ \\(([0-9]+)B\\)");
400 std::regex swap_regex("dex2oat took[^\\n]+swap=[^ ]+ \\(([0-9]+)B\\)")
    [all...]
dex2oat.cc 174 // It seems only "/system/bin/dex2oat" is left, or not even that. Use a pretty line.
175 return "Starting dex2oat.";
201 UsageError("Usage: dex2oat [options]...");
419 const char* reason = "dex2oat watch dog thread startup";
433 const char* reason = "dex2oat watch dog thread shutdown";
455 // watchdog (PackageManagerService.WATCHDOG_TIMEOUT, 10 minutes), so that dex2oat will abort
465 ::art::SetThreadName("dex2oat watch dog");
490 const char* reason = "dex2oat watch dog thread waiting";
495 Fatal(StringPrintf("dex2oat did not finish after %" PRId64 " seconds",
515 class Dex2Oat FINAL
2910 std::unique_ptr<Dex2Oat> dex2oat = MakeUnique<Dex2Oat>(&timings); local
    [all...]
  /art/runtime/
oat_file_assistant.cc 90 // before calling dex2oat.
236 // dex2oat to generate the oat file. Always generate the oat file as if it
623 + " not attempted because dex2oat is disabled.";
635 // dex2oat ignores missing dex files and doesn't report an error.
637 // TODO: Why does dex2oat behave that way?
694 if (!Dex2Oat(args, error_msg)) {
721 bool OatFileAssistant::Dex2Oat(const std::vector<std::string>& args,
726 *error_msg = "No image location found for Dex2Oat.";
    [all...]

Completed in 67 milliseconds