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

  /art/dex2oat/
dex2oat_test.cc 62 bool success = Dex2Oat(args, &error_msg);
103 bool Dex2Oat(const std::vector<std::string>& dex2oat_args, std::string* error_msg) {
109 *error_msg = "No image location found for Dex2Oat.";
166 // We need dex2oat to actually log things.
244 // Check whether the dex2oat run was really successful.
259 // On the host, we can get the dex2oat output. Here, look for "dex2oat took."
261 EXPECT_NE(output_.find("dex2oat took"), std::string::npos) << output_;
333 // loaded in dex2oat, which is after the oat file has been started. Thus, the header
381 // Check whether the dex2oat run was really successful
    [all...]
dex2oat.cc 156 // It seems only "/system/bin/dex2oat" is left, or not even that. Use a pretty line.
157 return "Starting dex2oat.";
183 UsageError("Usage: dex2oat [options]...");
382 UsageError(" This option is incompatible with read barriers (e.g., if dex2oat has been");
414 const char* reason = "dex2oat watch dog thread startup";
425 const char* reason = "dex2oat watch dog thread shutdown";
440 ::art::SetThreadName("dex2oat watch dog");
460 const char* reason = "dex2oat watch dog thread waiting";
465 Fatal(StringPrintf("dex2oat did not finish after %" PRId64 " seconds",
481 // watchdog (PackageManagerService.WATCHDOG_TIMEOUT, 10 minutes), so that dex2oat will abor
2623 static int dex2oat(int argc, char** argv) { function in namespace:art
2632 std::unique_ptr<Dex2Oat> dex2oat = MakeUnique<Dex2Oat>(&timings); local
    [all...]
  /art/runtime/
oat_file_assistant.cc 197 // We can only run dex2oat if there are original dex files.
648 + " not attempted because dex2oat is disabled";
679 + " not attempted because dex2oat is disabled.";
690 // dex2oat ignores missing dex files and doesn't report an error.
692 // TODO: Why does dex2oat behave that way?
719 if (!Dex2Oat(args, error_msg)) {
738 bool OatFileAssistant::Dex2Oat(const std::vector<std::string>& args,
743 *error_msg = "No image location found for Dex2Oat.";
    [all...]

Completed in 476 milliseconds