Home | History | Annotate | Download | only in quick

Lines Matching refs:method_idx

146 static uint64_t artInvokeCommon(uint32_t method_idx, mirror::Object* this_object,
151 mirror::ArtMethod* method = FindMethodFast(method_idx, this_object, caller_method,
155 method = FindMethodFromCode(method_idx, this_object, caller_method, self, access_check, type);
180 extern "C" uint64_t artInvokeInterfaceTrampolineWithAccessCheck(uint32_t method_idx,
186 return artInvokeCommon(method_idx, this_object, caller_method, self, sp, true, kInterface);
190 extern "C" uint64_t artInvokeDirectTrampolineWithAccessCheck(uint32_t method_idx,
196 return artInvokeCommon(method_idx, this_object, caller_method, self, sp, true, kDirect);
199 extern "C" uint64_t artInvokeStaticTrampolineWithAccessCheck(uint32_t method_idx,
205 return artInvokeCommon(method_idx, this_object, caller_method, self, sp, true, kStatic);
208 extern "C" uint64_t artInvokeSuperTrampolineWithAccessCheck(uint32_t method_idx,
214 return artInvokeCommon(method_idx, this_object, caller_method, self, sp, true, kSuper);
217 extern "C" uint64_t artInvokeVirtualTrampolineWithAccessCheck(uint32_t method_idx,
223 return artInvokeCommon(method_idx, this_object, caller_method, self, sp, true, kVirtual);