Home
last modified time | relevance | path

Searched refs:abort_message (Results 1 – 3 of 3) sorted by relevance

/art/runtime/oat/
Daot_class_linker.cc490 std::string abort_message; in AbortTransactionV() local
491 android::base::StringAppendV(&abort_message, fmt, args); in AbortTransactionV()
499 GetTransaction()->Abort(abort_message); in AbortTransactionV()
500 GetTransaction()->ThrowAbortError(self, &abort_message); in AbortTransactionV()
/art/runtime/
Dtransaction.cc95 void Transaction::Abort(const std::string& abort_message) { in Abort() argument
102 abort_message_ = abort_message; in Abort()
106 void Transaction::ThrowAbortError(Thread* self, const std::string* abort_message) { in ThrowAbortError() argument
107 const bool rethrow = (abort_message == nullptr); in ThrowAbortError()
117 self->ThrowNewWrappedException(kTransactionAbortErrorDescriptor, abort_message->c_str()); in ThrowAbortError()
Dtransaction.h56 void Abort(const std::string& abort_message)
58 void ThrowAbortError(Thread* self, const std::string* abort_message)