Lines Matching refs:Throwable

33 GcRoot<Class> Throwable::java_lang_Throwable_;
35 void Throwable::SetDetailMessage(String* new_detail_message) { in SetDetailMessage()
37 SetFieldObject<true>(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_), new_detail_message); in SetDetailMessage()
39 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_), in SetDetailMessage()
44 void Throwable::SetCause(Throwable* cause) { in SetCause()
47 Throwable* current_cause = GetFieldObject<Throwable>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_)); in SetCause()
50 SetFieldObject<true>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), cause); in SetCause()
52 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), cause); in SetCause()
56 void Throwable::SetStackState(Object* state) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in SetStackState()
59 SetFieldObjectVolatile<true>(OFFSET_OF_OBJECT_MEMBER(Throwable, stack_state_), state); in SetStackState()
61 SetFieldObjectVolatile<false>(OFFSET_OF_OBJECT_MEMBER(Throwable, stack_state_), state); in SetStackState()
65 bool Throwable::IsCheckedException() { in IsCheckedException()
72 int32_t Throwable::GetStackDepth() { in GetStackDepth()
88 std::string Throwable::Dump() { in Dump()
144 Throwable* cause = GetFieldObject<Throwable>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_)); in Dump()
152 void Throwable::SetClass(Class* java_lang_Throwable) { in SetClass()
158 void Throwable::ResetClass() { in ResetClass()
163 void Throwable::VisitRoots(RootVisitor* visitor) { in VisitRoots()