Searched refs:np_method (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | reflection.cc | 462 bool CheckArgsForInvokeMethod(ArtMethod* np_method, in CheckArgsForInvokeMethod() argument 465 const dex::TypeList* classes = np_method->GetParameterTypeList(); in CheckArgsForInvokeMethod() 479 ArtMethod* np_method, in InvokeMethodImpl() argument 486 *shorty = np_method->GetShorty(&shorty_len); in InvokeMethodImpl() 488 if (!arg_array.BuildArgArrayFromObjectArray(receiver, objects, np_method, soa.Self())) { in InvokeMethodImpl() 747 auto* np_method = m->GetInterfaceMethodIfProxy(kPointerSize); in InvokeMethod() local 748 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeMethod() 773 if (!InvokeMethodImpl(soa, m, np_method, receiver, objects, &shorty, &result)) { in InvokeMethod() 824 ArtMethod* np_method = constructor->GetInterfaceMethodIfProxy(kRuntimePointerSize); in InvokeConstructor() local 825 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeConstructor() [all …]
|
D | art_method.cc | 192 ArtMethod* np_method = method.GetInterfaceMethodIfProxy(kRuntimePointerSize); in ThrowInvocationTimeError() local 193 if (!np_method->IsStatic() && in ThrowInvocationTimeError() 194 np_method->GetNameView() == GetNameView() && in ThrowInvocationTimeError() 195 np_method->GetSignature() == GetSignature()) { in ThrowInvocationTimeError() 196 if (!np_method->IsPublic()) { in ThrowInvocationTimeError() 197 ThrowIllegalAccessErrorForImplementingMethod(receiver->GetClass(), np_method, this); in ThrowInvocationTimeError() 199 } else if (np_method->IsAbstract()) { in ThrowInvocationTimeError()
|
/art/runtime/mirror/ |
D | class.cc | 623 ArtMethod* np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindClassMethodWithSignature() local 624 if (np_method->GetNameView() == name && np_method->GetSignature() == signature) { in FindClassMethodWithSignature() 941 ArtMethod* const np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindDeclaredDirectMethodByName() local 942 if (name == np_method->GetName()) { in FindDeclaredDirectMethodByName() 951 ArtMethod* const np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindDeclaredVirtualMethodByName() local 952 if (name == np_method->GetName()) { in FindDeclaredVirtualMethodByName() 1894 ArtMethod* np_method = m.GetInterfaceMethodIfProxy(kPointerSize); in GetDeclaredMethodInternal() local 1895 if (!np_method->NameEquals(h_method_name.Get())) { in GetDeclaredMethodInternal() 1899 if (!np_method->EqualParameters(h_args)) { in GetDeclaredMethodInternal() 1928 ArtMethod* np_method = m.GetInterfaceMethodIfProxy(kPointerSize); in GetDeclaredMethodInternal() local [all …]
|
/art/runtime/jit/ |
D | jit.cc | 1431 ArtMethod* np_method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize); in MethodEntered() local 1432 if (np_method->IsCompilable()) { in MethodEntered()
|