Home
last modified time | relevance | path

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

/aosp12/art/runtime/
H A Dhandle_scope-inl.h63 BaseHandleScope* top_handle_scope = self_->PopHandleScope(); in ~StackHandleScope() local
64 DCHECK_EQ(top_handle_scope, this); in ~StackHandleScope()
231 BaseHandleScope* top_handle_scope = self_->PopHandleScope(); in ~VariableSizedHandleScope() local
232 DCHECK_EQ(top_handle_scope, this); in ~VariableSizedHandleScope()
H A Dthread.h912 return tlsPtr_.top_handle_scope; in GetTopHandleScope()
916 DCHECK_EQ(handle_scope->GetLink(), tlsPtr_.top_handle_scope); in PushHandleScope()
917 tlsPtr_.top_handle_scope = handle_scope; in PushHandleScope()
921 BaseHandleScope* handle_scope = tlsPtr_.top_handle_scope; in PopHandleScope()
923 tlsPtr_.top_handle_scope = tlsPtr_.top_handle_scope->GetLink(); in PopHandleScope()
930 top_handle_scope)); in TopHandleScopeOffset()
1691 top_handle_scope(nullptr), class_loader_override(nullptr), long_jump_context(nullptr), in PACKED()
1765 BaseHandleScope* top_handle_scope; in PACKED() local
H A Dentrypoints_order_test.cc98 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, monitor_enter_object, top_handle_scope, sizeof(void*)); in CheckThreadOffsets()
99 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, top_handle_scope, class_loader_override, sizeof(void*)); in CheckThreadOffsets()
H A Dthread.cc2625 for (BaseHandleScope* cur = tlsPtr_.top_handle_scope; cur; cur = cur->GetLink()) { in HandleScopeVisitRoots()