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

  /art/runtime/
dexopt_test.h 64 bool Dex2Oat(const std::vector<std::string>& args, std::string* error_msg);
dexopt_test.cc 49 bool DexoptTest::Dex2Oat(const std::vector<std::string>& args, std::string* error_msg) {
108 ASSERT_TRUE(Dex2Oat(args, &error_msg)) << error_msg;
oat_file_assistant_test.cc 126 ASSERT_TRUE(Dex2Oat(args, &error_msg)) << error_msg;
158 ASSERT_TRUE(Dex2Oat(args, &error_msg)) << error_msg;
185 ASSERT_TRUE(Dex2Oat(args, &error_msg)) << error_msg;
    [all...]
  /art/compiler/driver/
compiler_options.h 469 friend class Dex2Oat;
  /art/runtime/gc/space/
image_space_test.cc 45 ASSERT_TRUE(Dex2Oat(args, &error_msg)) << error_msg;
122 options->emplace_back(kImageDex2oat ? "-Ximage-dex2oat" : "-Xnoimage-dex2oat", nullptr);
  /art/dex2oat/
dex2oat.cc 190 // It seems only "/apex/com.android.runtime/bin/dex2oat" is left, or not
192 return "Starting dex2oat.";
218 UsageError("Usage: dex2oat [options]...");
460 UsageError(" --dex-file=src.dex then dex2oat will setup a PathClassLoader with classpath ");
525 const char* reason = "dex2oat watch dog thread startup";
539 const char* reason = "dex2oat watch dog thread shutdown";
552 const char* reason = "dex2oat watch dog set runtime";
568 // watchdog (PackageManagerService.WATCHDOG_TIMEOUT, 10 minutes), so that dex2oat will abort
578 ::art::SetThreadName("dex2oat watch dog");
611 const char* reason = "dex2oat watch dog thread waiting"
2960 std::unique_ptr<Dex2Oat> dex2oat = std::make_unique<Dex2Oat>(&timings); local
    [all...]
dex2oat_test.cc 102 int status = Dex2Oat(args, error_msg);
196 int Dex2Oat(const std::vector<std::string>& dex2oat_args, std::string* error_msg) {
234 // We need dex2oat to actually log things.
305 // Check whether the dex2oat run was really successful.
320 // On the host, we can get the dex2oat output. Here, look for "dex2oat took."
322 EXPECT_NE(output_.find("dex2oat took"), std::string::npos) << output_;
391 std::regex native_alloc_regex("dex2oat took.*native alloc=[^ ]+ \\(([0-9]+)B\\)");
411 std::regex swap_regex("dex2oat took[^\\n]+swap=[^ ]+ \\(([0-9]+)B\\)");
531 // loaded in dex2oat, which is after the oat file has been started. Thus, the heade
    [all...]

Completed in 596 milliseconds