Searched refs:handle_scope (Results 1 – 3 of 3) sorted by relevance
335 VariableSizedHandleScope* handle_scope) { in FillHeap() argument336 DCHECK(handle_scope != nullptr); in FillHeap()341 Handle<mirror::Class> c(handle_scope->NewHandle( in FillHeap()344 Handle<mirror::Class> ca(handle_scope->NewHandle( in FillHeap()351 MutableHandle<mirror::Object> h(handle_scope->NewHandle<mirror::Object>( in FillHeap()368 handle_scope->NewHandle<mirror::Object>(c->AllocObject(self)); in FillHeap()
915 void PushHandleScope(BaseHandleScope* handle_scope) REQUIRES_SHARED(Locks::mutator_lock_) { in PushHandleScope() argument916 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() local922 DCHECK(handle_scope != nullptr); in PopHandleScope()924 return handle_scope; in PopHandleScope()944 BaseReflectiveHandleScope* handle_scope = tlsPtr_.top_reflective_handle_scope; in PopReflectiveHandleScope() local945 DCHECK(handle_scope != nullptr); in PopReflectiveHandleScope()947 return handle_scope; in PopReflectiveHandleScope()
81 VariableSizedHandleScope* handle_scope)