Searched refs:top_handle_scope (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | handle_scope-inl.h | 55 BaseHandleScope* top_handle_scope = self_->PopHandleScope(); in ~StackHandleScope() local 56 DCHECK_EQ(top_handle_scope, this); in ~StackHandleScope() 217 BaseHandleScope* top_handle_scope = self_->PopHandleScope(); in ~VariableSizedHandleScope() local 218 DCHECK_EQ(top_handle_scope, this); in ~VariableSizedHandleScope()
|
D | thread.h | 873 return tlsPtr_.top_handle_scope; in GetTopHandleScope() 877 DCHECK_EQ(handle_scope->GetLink(), tlsPtr_.top_handle_scope); in PushHandleScope() 878 tlsPtr_.top_handle_scope = handle_scope; in PushHandleScope() 882 BaseHandleScope* handle_scope = tlsPtr_.top_handle_scope; in PopHandleScope() 884 tlsPtr_.top_handle_scope = tlsPtr_.top_handle_scope->GetLink(); in PopHandleScope() 891 top_handle_scope)); in TopHandleScopeOffset() 1592 top_handle_scope(nullptr), class_loader_override(nullptr), long_jump_context(nullptr), in PACKED() 1666 BaseHandleScope* top_handle_scope; in PACKED() local
|
D | entrypoints_order_test.cc | 99 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, monitor_enter_object, top_handle_scope, sizeof(void*)); in CheckThreadOffsets() 100 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, top_handle_scope, class_loader_override, sizeof(void*)); in CheckThreadOffsets()
|
D | thread.cc | 2531 for (BaseHandleScope* cur = tlsPtr_.top_handle_scope; cur!= nullptr; cur = cur->GetLink()) { in HandleScopeContains() 2543 for (BaseHandleScope* cur = tlsPtr_.top_handle_scope; cur; cur = cur->GetLink()) { in HandleScopeVisitRoots()
|