Home
last modified time | relevance | path

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

/art/runtime/
Dtransaction.cc78 void Transaction::Abort(const std::string& abort_message) { in Abort() argument
86 abort_message_ = abort_message; in Abort()
90 void Transaction::ThrowAbortError(Thread* self, const std::string* abort_message) { in ThrowAbortError() argument
91 const bool rethrow = (abort_message == nullptr); in ThrowAbortError()
103 abort_message->c_str()); in ThrowAbortError()
Dtransaction.h54 void Abort(const std::string& abort_message)
57 void ThrowAbortError(Thread* self, const std::string* abort_message)
Druntime.cc2490 void Runtime::AbortTransactionAndThrowAbortError(Thread* self, const std::string& abort_message) { in AbortTransactionAndThrowAbortError() argument
2498 GetTransaction()->Abort(abort_message); in AbortTransactionAndThrowAbortError()
2499 GetTransaction()->ThrowAbortError(self, &abort_message); in AbortTransactionAndThrowAbortError()
Druntime.h540 void AbortTransactionAndThrowAbortError(Thread* self, const std::string& abort_message)