Lines Matching refs:error_msg
248 bool FullPlainOutputExec(std::string* error_msg) { in FullPlainOutputExec() argument
265 if (!::art::Exec(dexdump_exec_argv, error_msg)) { in FullPlainOutputExec()
268 if (!::art::Exec(dexlayout_exec_argv, error_msg)) { in FullPlainOutputExec()
273 if (!::art::Exec(diff_exec_argv, error_msg)) { in FullPlainOutputExec()
281 bool DexFileOutputExec(std::string* error_msg) { in DexFileOutputExec() argument
292 if (!::art::Exec(dexlayout_exec_argv, error_msg)) { in DexFileOutputExec()
299 if (!::art::Exec(unzip_exec_argv, error_msg)) { in DexFileOutputExec()
304 if (!::art::Exec(diff_exec_argv, error_msg)) { in DexFileOutputExec()
308 if (!::art::Exec(rm_zip_exec_argv, error_msg)) { in DexFileOutputExec()
312 if (!::art::Exec(rm_out_exec_argv, error_msg)) { in DexFileOutputExec()
324 std::string error_msg; in CreateProfile() local
328 &error_msg, in CreateProfile()
331 ASSERT_TRUE(result) << error_msg; in CreateProfile()
381 bool DexFileLayoutExec(std::string* error_msg) { in DexFileLayoutExec() argument
400 if (!::art::Exec(dexlayout_exec_argv, error_msg)) { in DexFileLayoutExec()
408 if (!::art::Exec(rm_exec_argv, error_msg)) { in DexFileLayoutExec()
416 bool DexFileLayoutFixedPointExec(std::string* error_msg) { in DexFileLayoutFixedPointExec() argument
433 if (!art::Exec(unzip_args, error_msg)) { in DexFileLayoutFixedPointExec()
449 if (!::art::Exec(dexlayout_exec_argv, error_msg)) { in DexFileLayoutFixedPointExec()
461 if (!::art::Exec(second_dexlayout_exec_argv, error_msg)) { in DexFileLayoutFixedPointExec()
468 if (!::art::Exec(diff_exec_argv, error_msg)) { in DexFileLayoutFixedPointExec()
474 if (!::art::Exec(rm_exec_argv, error_msg)) { in DexFileLayoutFixedPointExec()
482 bool UnreferencedCatchHandlerExec(std::string* error_msg, const char* filename) { in UnreferencedCatchHandlerExec() argument
498 if (!::art::Exec(dexlayout_exec_argv, error_msg)) { in UnreferencedCatchHandlerExec()
504 if (!::art::Exec(diff_exec_argv, error_msg)) { in UnreferencedCatchHandlerExec()
509 if (!::art::Exec(rm_exec_argv, error_msg)) { in UnreferencedCatchHandlerExec()
524 std::string error_msg; in DexLayoutExec() local
525 const bool result = ::art::Exec(dexlayout_exec_argv, &error_msg); in DexLayoutExec()
527 LOG(ERROR) << "Error: " << error_msg; in DexLayoutExec()
538 std::string error_msg; in TEST_F() local
539 ASSERT_TRUE(FullPlainOutputExec(&error_msg)) << error_msg; in TEST_F()
545 std::string error_msg; in TEST_F() local
546 ASSERT_TRUE(DexFileOutputExec(&error_msg)) << error_msg; in TEST_F()
552 std::string error_msg; in TEST_F() local
553 ASSERT_TRUE(DexFileLayoutExec(&error_msg)) << error_msg; in TEST_F()
559 std::string error_msg; in TEST_F() local
560 ASSERT_TRUE(DexFileLayoutFixedPointExec(&error_msg)) << error_msg; in TEST_F()
566 std::string error_msg; in TEST_F() local
567 ASSERT_TRUE(UnreferencedCatchHandlerExec(&error_msg, in TEST_F()
568 kUnreferencedCatchHandlerInputDex)) << error_msg; in TEST_F()
574 std::string error_msg; in TEST_F() local
575 ASSERT_TRUE(UnreferencedCatchHandlerExec(&error_msg, in TEST_F()
576 kUnreferenced0SizeCatchHandlerInputDex)) << error_msg; in TEST_F()
582 std::string error_msg; in TEST_F() local
583 ASSERT_TRUE(UnreferencedCatchHandlerExec(&error_msg, in TEST_F()
584 kUnreferencedEndingCatchHandlerInputDex)) << error_msg; in TEST_F()