Home
last modified time | relevance | path

Searched refs:HandleWrapperObjPtr (Results 1 – 20 of 20) 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.h107 HandleWrapperObjPtr<mirror::Object> h(hs.NewHandleWrapper(&obj)); in DoFieldGetCommon()
168 HandleWrapperObjPtr<mirror::Object> h(hs.NewHandleWrapper(&obj)); in DoFieldPutCommon()
220 HandleWrapperObjPtr<mirror::Object> h_reg(hs.NewHandleWrapper(&reg)); in DoFieldPutCommon()
221 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.h141 inline HandleWrapperObjPtr<T> FixedSizeHandleScope<kNumReferences>::NewHandleWrapper( in NewHandleWrapper()
143 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.h121 HandleWrapperObjPtr<mirror::Class> referrer_wrapper = hs.NewHandleWrapper(&referrer); in ResolveType()
Dreflection.cc705 HandleWrapperObjPtr<mirror::Class> h_class(hs.NewHandleWrapper(&declaring_class)); in InvokeMethod()
Dmethod_handles.cc638 HandleWrapperObjPtr<mirror::Class> h(hs.NewHandleWrapper(&klass)); in GetAndInitializeDeclaringClass()
Dthread.cc3565 HandleWrapperObjPtr<mirror::Throwable> h_exception(hs.NewHandleWrapper(&exception)); in QuickDeliverException()
Dclass_linker.cc2675 HandleWrapperObjPtr<mirror::Class> h = hs.NewHandleWrapper(&klass); in EnsureResolved()
2710 HandleWrapperObjPtr<mirror::Class> h_class(hs.NewHandleWrapper(&klass)); in EnsureResolved()
/art/runtime/gc/
Dheap-inl.h65 HandleWrapperObjPtr<mirror::Class> h = hs.NewHandleWrapper(&klass); in AllocObjectWithAllocator()
74 HandleWrapperObjPtr<mirror::Class> h_klass(hs.NewHandleWrapper(&klass)); in AllocObjectWithAllocator()
Dheap.cc1746 HandleWrapperObjPtr<mirror::Class> h_klass(hs.NewHandleWrapper(klass)); in AllocateInternalWithGc()
3011 HandleWrapperObjPtr<mirror::Object> wrapper(hs.NewHandleWrapper(obj)); in PushOnAllocationStackWithInternalGC()
3030 HandleWrapperObjPtr<mirror::Object> wrapper(hs.NewHandleWrapper(obj)); in PushOnThreadLocalAllocationStackWithInternalGC()
3674 HandleWrapperObjPtr<mirror::Object> wrapper(hs.NewHandleWrapper(obj)); in RequestConcurrentGCAndSaveObject()
/art/runtime/entrypoints/quick/
Dquick_jni_entrypoints.cc185 HandleWrapperObjPtr<mirror::Object> h_obj(hs.NewHandleWrapper(&o)); in JniMethodEndWithReferenceHandleResult()
Dquick_trampoline_entrypoints.cc1381 HandleWrapperObjPtr<mirror::Class> h_called_class(hs.NewHandleWrapper(&called_class)); in artQuickResolutionTrampoline()
/art/runtime/native/
Djava_lang_reflect_Field.cc135 HandleWrapperObjPtr<mirror::Field> h_f(hs.NewHandleWrapper(f)); in CheckReceiver()
136 HandleWrapperObjPtr<mirror::Class> h_klass(hs.NewHandleWrapper(&declaring_class)); in CheckReceiver()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h473 HandleWrapperObjPtr<mirror::Object> h_this(hs2.NewHandleWrapper(this_object)); in FindMethodToCall()
575 HandleWrapperObjPtr<mirror::Object> h_this(hs.NewHandleWrapper(this_object)); in FindMethodFromCode()
/art/runtime/interpreter/
Dinterpreter_common.h597 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj); in DoIGetQuick()
739 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&obj); in DoIPutQuick()
Dinterpreter_common.cc1351 HandleWrapperObjPtr<mirror::Object> h = hs.NewHandleWrapper(&o); in DoCallCommon()
Dunstarted_runtime.cc149 HandleWrapperObjPtr<mirror::Class> h_class = hs.NewHandleWrapper(&found); in UnstartedRuntimeFindClass()
/art/runtime/jni/
Djni_internal.cc1915 HandleWrapperObjPtr<mirror::String> h(hs.NewHandleWrapper(&s)); in GetStringCritical()