Searched refs:async_exception (Results 1 – 3 of 3) sorted by relevance
/aosp12/art/runtime/ |
H A D | entrypoints_order_test.cc | 135 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_mark_stack, async_exception, sizeof(void*)); in CheckThreadOffsets() 136 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, async_exception, top_reflective_handle_scope, in CheckThreadOffsets()
|
H A D | thread.h | 461 return tlsPtr_.async_exception != nullptr; in IsAsyncExceptionPending() 1701 async_exception(nullptr), top_reflective_handle_scope(nullptr) { in PACKED() 1856 mirror::Throwable* async_exception; in PACKED() local
|
H A D | thread.cc | 4135 if (tlsPtr_.async_exception != nullptr) { in VisitRoots() 4136 visitor->VisitRoot(reinterpret_cast<mirror::Object**>(&tlsPtr_.async_exception), in VisitRoots() 4382 tlsPtr_.async_exception = new_exception.Ptr(); in SetAsyncException() 4387 if (tlsPtr_.async_exception != nullptr) { in ObserveAsyncException() 4391 LOG(WARNING) << "Async exception is " << tlsPtr_.async_exception->Dump(); in ObserveAsyncException() 4393 tlsPtr_.exception = tlsPtr_.async_exception; in ObserveAsyncException() 4394 tlsPtr_.async_exception = nullptr; in ObserveAsyncException()
|