Searched defs:error_msg (Results 1 - 3 of 3) sorted by relevance

/art/runtime/verifier/
H A Dmethod_verifier_test.cc36 std::string error_msg; local
37 ASSERT_TRUE(MethodVerifier::VerifyClass(klass, true, &error_msg) == MethodVerifier::kNoFailure)
38 << error_msg;
/art/compiler/driver/
H A Dcompiler_driver.cc1630 std::string error_msg; local
1636 class_def, true, &error_msg) ==
1641 << " because: " << error_msg;
/art/runtime/
H A Dclass_linker.cc2435 std::string error_msg(StringPrintf("Rejecting class %s that attempts to sub-class erroneous class %s",
2438 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
2443 ThrowVerifyError(klass, "%s", error_msg.c_str());
2466 std::string error_msg; local
2470 &error_msg);
2476 << " because: " << error_msg;
2506 << " because: " << error_msg;
2508 ThrowVerifyError(klass, "%s", error_msg.c_str());

Completed in 189 milliseconds