Home | History | Annotate | Download | only in dexlist

Lines Matching refs:error_msg

44   bool Exec(const std::vector<std::string>& args, std::string* error_msg) {
54 return ::art::Exec(exec_argv, error_msg);
62 std::string error_msg;
63 ASSERT_FALSE(Exec({}, &error_msg)) << error_msg;
67 std::string error_msg;
68 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
72 std::string error_msg;
73 ASSERT_FALSE(Exec({"-m", "joho", dex_file_}, &error_msg)) << error_msg;
77 std::string error_msg;
78 ASSERT_TRUE(Exec({"-o", "/dev/null", dex_file_}, &error_msg)) << error_msg;
82 std::string error_msg;
84 dex_file_}, &error_msg)) << error_msg;