Searched refs:np_method (Results 1 – 3 of 3) sorted by relevance
/aosp12/art/runtime/ |
H A 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() 744 auto* np_method = m->GetInterfaceMethodIfProxy(kPointerSize); in InvokeMethod() local 745 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeMethod() 770 if (!InvokeMethodImpl(soa, m, np_method, receiver, objects, &shorty, &result)) { in InvokeMethod() 821 ArtMethod* np_method = constructor->GetInterfaceMethodIfProxy(kRuntimePointerSize); in InvokeConstructor() local 822 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeConstructor() [all …]
|
/aosp12/art/runtime/mirror/ |
H A D | class.cc | 636 ArtMethod* np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindClassMethodWithSignature() local 637 if (np_method->GetName() == name && np_method->GetSignature() == signature) { in FindClassMethodWithSignature() 808 ArtMethod* const np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindDeclaredDirectMethodByName() local 809 if (name == np_method->GetName()) { in FindDeclaredDirectMethodByName() 818 ArtMethod* const np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindDeclaredVirtualMethodByName() local 819 if (name == np_method->GetName()) { in FindDeclaredVirtualMethodByName() 1448 auto* np_method = m.GetInterfaceMethodIfProxy(kPointerSize); in GetDeclaredMethodInternal() local 1450 ObjPtr<String> np_name = np_method->ResolveNameString(); in GetDeclaredMethodInternal() 1451 if (!np_name->Equals(h_method_name.Get()) || !np_method->EqualParameters(h_args)) { in GetDeclaredMethodInternal() 1480 auto* np_method = m.GetInterfaceMethodIfProxy(kPointerSize); in GetDeclaredMethodInternal() local [all …]
|
/aosp12/art/runtime/jit/ |
H A D | jit.cc | 1586 ArtMethod* np_method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize); in MethodEntered() local 1587 if (np_method->IsCompilable()) { in MethodEntered()
|