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

  /art/runtime/gc/space/
image_space_test.cc 41 ASSERT_TRUE(OatFileAssistant::Dex2Oat(args, &error_msg)) << error_msg;
  /art/compiler/driver/
compiler_options.h 312 friend class Dex2Oat;
  /art/runtime/
oat_file_assistant.h 61 // dex2oat should be run to update the apk/jar from scratch.
65 // dex2oat should be run to update the apk/jar because the existing code
70 // dex2oat should be run to update the apk/jar because the existing code
75 // dex2oat should be run to update the apk/jar because the existing code
191 // passed to dex2oat.
236 // be compiled with dex2oat for this dex location.
258 // Executes dex2oat using the current runtime configuration overridden with
259 // the given arguments. This does not check to see if dex2oat is enabled in
268 static bool Dex2Oat(const std::vector<std::string>& args, std::string* error_msg);
runtime_options.def 24 // RuntimeOptions opt; bool* dex2oat_enabled = opt.Get(RuntimeOptions::Dex2Oat);
89 RUNTIME_OPTIONS_KEY (bool, Dex2Oat, true)
dexopt_test.cc 57 // Temporarily redirect the dalvik cache so dex2oat doesn't find the
93 ASSERT_TRUE(OatFileAssistant::Dex2Oat(args, &error_msg)) << error_msg;
oat_file_assistant.cc 92 // before calling dex2oat.
258 // dex2oat to generate the oat file. Always generate the oat file as if it
682 + " not attempted because dex2oat is disabled.";
694 // dex2oat ignores missing dex files and doesn't report an error.
696 // TODO: Why does dex2oat behave that way?
758 if (!Dex2Oat(args, error_msg)) {
781 bool OatFileAssistant::Dex2Oat(const std::vector<std::string>& args,
786 *error_msg = "No image location found for Dex2Oat.";
    [all...]
parsed_options.cc 216 .IntoKey(M::Dex2Oat)
217 .Define({"-Ximage-dex2oat", "-Xnoimage-dex2oat"})
735 UsageMessage(stream, " -Xcompiler-option dex2oat-option\n");
736 UsageMessage(stream, " -Ximage-compiler-option dex2oat-option\n");
745 UsageMessage(stream, " -X[no]dex2oat (Whether to invoke dex2oat on the application)\n");
746 UsageMessage(stream, " -X[no]image-dex2oat (Whether to create and use a boot image)\n");
    [all...]
oat_file_assistant_test.cc 490 ASSERT_TRUE(OatFileAssistant::Dex2Oat(args, &error_msg)) << error_msg;
    [all...]
runtime.cc 692 compiler_executable += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
    [all...]
  /art/dex2oat/
dex2oat.cc 182 // It seems only "/system/bin/dex2oat" is left, or not even that. Use a pretty line.
183 return "Starting dex2oat.";
209 UsageError("Usage: dex2oat [options]...");
426 UsageError(" --dex-file=src.dex then dex2oat will setup a PathClassLoader with classpath ");
466 const char* reason = "dex2oat watch dog thread startup";
480 const char* reason = "dex2oat watch dog thread shutdown";
502 // watchdog (PackageManagerService.WATCHDOG_TIMEOUT, 10 minutes), so that dex2oat will abort
512 ::art::SetThreadName("dex2oat watch dog");
547 const char* reason = "dex2oat watch dog thread waiting";
552 Fatal(StringPrintf("dex2oat did not finish after %" PRId64 " seconds"
3084 std::unique_ptr<Dex2Oat> dex2oat = std::make_unique<Dex2Oat>(&timings); local
    [all...]
dex2oat_test.cc 85 int status = Dex2Oat(args, error_msg);
147 int Dex2Oat(const std::vector<std::string>& dex2oat_args, std::string* error_msg) {
153 *error_msg = "No image location found for Dex2Oat.";
214 // 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\\)")
    [all...]
  /art/cmdline/
cmdline_parser_test.cc 569 EXPECT_KEY_VALUE(map, M::Dex2Oat, false);

Completed in 238 milliseconds