Searched refs:async_exception (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | entrypoints_order_test.cc | 142 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_mark_stack, async_exception, sizeof(void*)); in CheckThreadOffsets() 143 EXPECT_OFFSET_DIFF(Thread, tlsPtr_.async_exception, Thread, wait_mutex_, sizeof(void*), in CheckThreadOffsets()
|
D | thread.h | 424 return tlsPtr_.async_exception != nullptr; in IsAsyncExceptionPending() 1574 async_exception(nullptr) { in PACKED() 1733 mirror::Throwable* async_exception; in PACKED() local
|
D | thread.cc | 3753 if (tlsPtr_.async_exception != nullptr) { in VisitRoots() 3754 visitor->VisitRoot(reinterpret_cast<mirror::Object**>(&tlsPtr_.async_exception), in VisitRoots() 3986 tlsPtr_.async_exception = new_exception.Ptr(); in SetAsyncException() 3991 if (tlsPtr_.async_exception != nullptr) { in ObserveAsyncException() 3995 LOG(WARNING) << "Async exception is " << tlsPtr_.async_exception->Dump(); in ObserveAsyncException() 3997 tlsPtr_.exception = tlsPtr_.async_exception; in ObserveAsyncException() 3998 tlsPtr_.async_exception = nullptr; in ObserveAsyncException()
|