Home
last modified time | relevance | path

Searched refs:HandleWrapperObjPtr (Results 1 – 18 of 18) sorted by relevance

/art/runtime/
Dhandle_wrapper.h48 class HandleWrapperObjPtr : public MutableHandle<T> {
50 HandleWrapperObjPtr(ObjPtr<T>* obj, const MutableHandle<T>& handle) in HandleWrapperObjPtr() function
53 HandleWrapperObjPtr(const HandleWrapperObjPtr&) = default;
55 ~HandleWrapperObjPtr() { in ~HandleWrapperObjPtr()
Dcommon_dex_operations.h104 HandleWrapperObjPtr<mirror::Object> h(hs.NewHandleWrapper(&obj)); in DoFieldGetCommon()
163 HandleWrapperObjPtr<mirror::Object> h(hs.NewHandleWrapper(&obj)); in DoFieldPutCommon()
214 HandleWrapperObjPtr<mirror::Object> h_reg(hs.NewHandleWrapper(&reg)); in DoFieldPutCommon()
215 HandleWrapperObjPtr<mirror::Object> h_obj(hs.NewHandleWrapper(&obj)); in DoFieldPutCommon()
Dhandle_scope.h34 template<class T> class HandleWrapperObjPtr; variable
183 ALWAYS_INLINE HandleWrapperObjPtr<T> NewHandleWrapper(ObjPtr<T>* object)
Dhandle_scope-inl.h139 inline HandleWrapperObjPtr<T> FixedSizeHandleScope<kNumReferences>::NewHandleWrapper( in NewHandleWrapper()
141 return HandleWrapperObjPtr<T>(object, NewHandle(*object)); in NewHandleWrapper()
Dreflection_test.cc123 HandleWrapperObjPtr<mirror::Class> h_class(hs2.NewHandleWrapper(&c)); in ReflectionTestMakeInterpreted()
131 HandleWrapperObjPtr<mirror::Object> h(hs.NewHandleWrapper(receiver)); in ReflectionTestMakeInterpreted()
Dclass_linker-inl.h118 HandleWrapperObjPtr<mirror::Class> referrer_wrapper = hs.NewHandleWrapper(&referrer); in ResolveType()
Dreflection.cc666 HandleWrapperObjPtr<mirror::Class> h_class(hs.NewHandleWrapper(&declaring_class)); in InvokeMethod()
Dmethod_handles.cc631 HandleWrapperObjPtr<mirror::Class> h(hs.NewHandleWrapper(&klass)); in GetAndInitializeDeclaringClass()
Ddebugger.cc3934 HandleWrapperObjPtr<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver)); in PrepareInvokeMethod()
3935 HandleWrapperObjPtr<mirror::Class> h_klass(hs.NewHandleWrapper(&c)); in PrepareInvokeMethod()
/art/runtime/entrypoints/quick/
Dquick_jni_entrypoints.cc162 HandleWrapperObjPtr<mirror::Object> h_obj(hs.NewHandleWrapper(&o)); in JniMethodEndWithReferenceHandleResult()
/art/runtime/gc/
Dheap-inl.h59 HandleWrapperObjPtr<mirror::Class> h = hs.NewHandleWrapper(&klass); in AllocObjectWithAllocator()
Dheap.cc1733 HandleWrapperObjPtr<mirror::Class> h(hs.NewHandleWrapper(klass)); in AllocateInternalWithGc()
3131 HandleWrapperObjPtr<mirror::Object> wrapper(hs.NewHandleWrapper(obj)); in PushOnAllocationStackWithInternalGC()
3150 HandleWrapperObjPtr<mirror::Object> wrapper(hs.NewHandleWrapper(obj)); in PushOnThreadLocalAllocationStackWithInternalGC()
3786 HandleWrapperObjPtr<mirror::Object> wrapper(hs.NewHandleWrapper(obj)); in RequestConcurrentGCAndSaveObject()
/art/runtime/native/
Djava_lang_reflect_Field.cc134 HandleWrapperObjPtr<mirror::Field> h_f(hs.NewHandleWrapper(f)); in CheckReceiver()
135 HandleWrapperObjPtr<mirror::Class> h_klass(hs.NewHandleWrapper(&declaring_class)); in CheckReceiver()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h479 HandleWrapperObjPtr<mirror::Object> h_this(hs2.NewHandleWrapper(this_object)); in FindMethodToCall()
581 HandleWrapperObjPtr<mirror::Object> h_this(hs.NewHandleWrapper(this_object)); in FindMethodFromCode()
/art/runtime/interpreter/
Dinterpreter_common.cc218 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj); in EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL()
403 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj); in EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL()
1672 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&o); in DoCallCommon()
Dinterpreter.cc659 HandleWrapperObjPtr<mirror::Class> h_declaring_class(hs.NewHandleWrapper(&declaring_class)); in ArtInterpreterToInterpreterBridge()
Dunstarted_runtime.cc149 HandleWrapperObjPtr<mirror::Class> h_class = hs.NewHandleWrapper(&found); in UnstartedRuntimeFindClass()
/art/runtime/jni/
Djni_internal.cc2076 HandleWrapperObjPtr<mirror::String> h(hs.NewHandleWrapper(&s)); in GetStringCritical()