Lines Matching refs:this_object

1028                                                              mirror::Object* this_object,  in artInstrumentationMethodEntryFromCode()  argument
1071 is_static ? nullptr : this_object, in artInstrumentationMethodEntryFromCode()
2195 ObjPtr<mirror::Object> this_object, in artInvokeCommon() argument
2201 ArtMethod* method = FindMethodFast<type, access_check>(method_idx, this_object, caller_method); in artInvokeCommon()
2212 &this_object, in artInvokeCommon()
2255 uint32_t method_idx, mirror::Object* this_object, Thread* self, ArtMethod** sp) in artInvokeInterfaceTrampolineWithAccessCheck() argument
2257 return artInvokeCommon<kInterface, true>(method_idx, this_object, self, sp); in artInvokeInterfaceTrampolineWithAccessCheck()
2261 uint32_t method_idx, mirror::Object* this_object, Thread* self, ArtMethod** sp) in artInvokeDirectTrampolineWithAccessCheck() argument
2263 return artInvokeCommon<kDirect, true>(method_idx, this_object, self, sp); in artInvokeDirectTrampolineWithAccessCheck()
2268 mirror::Object* this_object ATTRIBUTE_UNUSED, in artInvokeStaticTrampolineWithAccessCheck()
2277 uint32_t method_idx, mirror::Object* this_object, Thread* self, ArtMethod** sp) in artInvokeSuperTrampolineWithAccessCheck() argument
2279 return artInvokeCommon<kSuper, true>(method_idx, this_object, self, sp); in artInvokeSuperTrampolineWithAccessCheck()
2283 uint32_t method_idx, mirror::Object* this_object, Thread* self, ArtMethod** sp) in artInvokeVirtualTrampolineWithAccessCheck() argument
2285 return artInvokeCommon<kVirtual, true>(method_idx, this_object, self, sp); in artInvokeVirtualTrampolineWithAccessCheck()
2303 Handle<mirror::Object> this_object = hs.NewHandle(raw_this_object); in artInvokeInterfaceTrampoline() local
2341 raw_this_object = this_object.Get(); in artInvokeInterfaceTrampoline()