Searched defs:Exec (Results 1 - 6 of 6) sorted by relevance

/art/dexdump/
H A Ddexdump_test.cc41 bool Exec(const std::vector<std::string>& args, std::string* error_msg) { function in class:art::DexDumpTest
47 return ::art::Exec(exec_argv, error_msg);
56 ASSERT_FALSE(Exec({}, &error_msg)) << error_msg;
61 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
66 ASSERT_FALSE(Exec({"-c", "-i", dex_file_}, &error_msg)) << error_msg;
71 ASSERT_TRUE(Exec({"-d", "-f", "-h", "-l", "plain", "-o", "/dev/null",
77 ASSERT_TRUE(Exec({"-l", "xml", "-o", "/dev/null",
/art/dexlist/
H A Ddexlist_test.cc43 bool Exec(const std::vector<std::string>& args, std::string* error_msg) { function in class:art::DexListTest
49 return ::art::Exec(exec_argv, error_msg);
58 ASSERT_FALSE(Exec({}, &error_msg)) << error_msg;
63 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
68 ASSERT_FALSE(Exec({"-m", "joho", dex_file_}, &error_msg)) << error_msg;
73 ASSERT_TRUE(Exec({"-o", "/dev/null", dex_file_}, &error_msg)) << error_msg;
78 ASSERT_TRUE(Exec({"-o", "/dev/null", "-m", "java.lang.Object.toString",
/art/runtime/
H A Dexec_utils.cc90 bool Exec(std::vector<std::string>& arg_vector, std::string* error_msg) { function in namespace:art
/art/dexlayout/
H A Ddexdiag_test.cc85 bool Exec(pid_t this_pid, const std::vector<std::string>& args, std::string* error_msg) { function in class:art::DexDiagTest
101 return ::art::Exec(exec_argv, error_msg);
113 ASSERT_TRUE(Exec(getpid(), { kDexDiagHelp }, &error_msg)) << "Failed to execute -- because: " function
125 ASSERT_TRUE(Exec(getpid(), { kDexDiagContains }, &error_msg)) << "Failed to execute -- because: " function
137 ASSERT_FALSE(Exec(getpid(), { kDexDiagContainsFails }, &error_msg)) function
150 ASSERT_TRUE(Exec(getpid(), { kDexDiagVerbose }, &error_msg)) << "Failed to execute -- because: " function
/art/imgdiag/
H A Dimgdiag_test.cc88 bool Exec(pid_t image_diff_pid, const std::string& boot_image, std::string* error_msg) { function in class:art::ImgDiagTest
117 return ::art::Exec(exec_argv, error_msg);
122 return Exec(image_diff_pid, boot_image_location_, error_msg);
/art/oatdump/
H A Doatdump_test.h138 bool Exec(Flavor flavor, function in class:art::OatDumpTest
278 // Use execv here rather than art::Exec to avoid blocking on waitpid here.

Completed in 86 milliseconds