Searched refs:top_handle_scope (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | handle_scope-inl.h | 40 HandleScope* top_handle_scope = self_->PopHandleScope(); in ~StackHandleScope() local 41 DCHECK_EQ(top_handle_scope, this); in ~StackHandleScope()
|
D | thread.h | 685 return tlsPtr_.top_handle_scope; in GetTopHandleScope() 689 handle_scope->SetLink(tlsPtr_.top_handle_scope); in PushHandleScope() 690 tlsPtr_.top_handle_scope = handle_scope; in PushHandleScope() 694 HandleScope* handle_scope = tlsPtr_.top_handle_scope; in PopHandleScope() 696 tlsPtr_.top_handle_scope = tlsPtr_.top_handle_scope->GetLink(); in PopHandleScope() 703 top_handle_scope)); in TopHandleScopeOffset() 1027 top_handle_scope(nullptr), class_loader_override(nullptr), long_jump_context(nullptr), in tls_ptr_sized_values() 1084 HandleScope* top_handle_scope; member
|
D | entrypoints_order_test.cc | 103 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, monitor_enter_object, top_handle_scope, kPointerSize); in CheckThreadOffsets() 104 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, top_handle_scope, class_loader_override, kPointerSize); in CheckThreadOffsets()
|
D | thread.cc | 1300 for (HandleScope* cur = tlsPtr_.top_handle_scope; cur; cur = cur->GetLink()) { in NumHandleReferences() 1309 for (HandleScope* cur = tlsPtr_.top_handle_scope; cur; cur = cur->GetLink()) { in HandleScopeContains() 1319 for (HandleScope* cur = tlsPtr_.top_handle_scope; cur; cur = cur->GetLink()) { in HandleScopeVisitRoots()
|