Home
last modified time | relevance | path

Searched refs:handle_scope (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dcommon_runtime_test.cc360 VariableSizedHandleScope* handle_scope) { in FillHeap() argument
361 DCHECK(handle_scope != nullptr); in FillHeap()
366 Handle<mirror::Class> c(handle_scope->NewHandle( in FillHeap()
369 Handle<mirror::Class> ca(handle_scope->NewHandle( in FillHeap()
376 MutableHandle<mirror::Object> h(handle_scope->NewHandle<mirror::Object>( in FillHeap()
393 handle_scope->NewHandle<mirror::Object>(c->AllocObject(self)); in FillHeap()
Dthread.h1183 void PushHandleScope(BaseHandleScope* handle_scope) REQUIRES_SHARED(Locks::mutator_lock_) { in PushHandleScope() argument
1184 DCHECK_EQ(handle_scope->GetLink(), tlsPtr_.top_handle_scope); in PushHandleScope()
1185 tlsPtr_.top_handle_scope = handle_scope; in PushHandleScope()
1189 BaseHandleScope* handle_scope = tlsPtr_.top_handle_scope; in PopHandleScope() local
1190 DCHECK(handle_scope != nullptr); in PopHandleScope()
1192 return handle_scope; in PopHandleScope()
1225 BaseReflectiveHandleScope* handle_scope = tlsPtr_.top_reflective_handle_scope; in PopReflectiveHandleScope() local
1226 DCHECK(handle_scope != nullptr); in PopReflectiveHandleScope()
1228 return handle_scope; in PopReflectiveHandleScope()
Dcommon_runtime_test.h83 VariableSizedHandleScope* handle_scope)