Home
last modified time | relevance | path

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

/art/runtime/
Dhandle_scope-inl.h54 BaseHandleScope* top_handle_scope = self_->PopHandleScope(); in ~StackHandleScope() local
55 DCHECK_EQ(top_handle_scope, this); in ~StackHandleScope()
207 BaseHandleScope* top_handle_scope = self_->PopHandleScope(); in ~VariableSizedHandleScope() local
208 DCHECK_EQ(top_handle_scope, this); in ~VariableSizedHandleScope()
Dthread.h895 return tlsPtr_.top_handle_scope; in GetTopHandleScope()
899 DCHECK_EQ(handle_scope->GetLink(), tlsPtr_.top_handle_scope); in PushHandleScope()
900 tlsPtr_.top_handle_scope = handle_scope; in PushHandleScope()
904 BaseHandleScope* handle_scope = tlsPtr_.top_handle_scope; in PopHandleScope()
906 tlsPtr_.top_handle_scope = tlsPtr_.top_handle_scope->GetLink(); in PopHandleScope()
913 top_handle_scope)); in TopHandleScopeOffset()
1563 top_handle_scope(nullptr), class_loader_override(nullptr), long_jump_context(nullptr), in PACKED()
1638 BaseHandleScope* top_handle_scope; in PACKED() local
Dentrypoints_order_test.cc101 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, monitor_enter_object, top_handle_scope, sizeof(void*)); in CheckThreadOffsets()
102 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, top_handle_scope, class_loader_override, sizeof(void*)); in CheckThreadOffsets()
Dthread.cc2331 for (BaseHandleScope* cur = tlsPtr_.top_handle_scope; cur!= nullptr; cur = cur->GetLink()) { in HandleScopeContains()
2343 for (BaseHandleScope* cur = tlsPtr_.top_handle_scope; cur; cur = cur->GetLink()) { in HandleScopeVisitRoots()