Searched refs:np_method (Results 1 – 3 of 3) 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() 693 auto* np_method = m->GetInterfaceMethodIfProxy(kRuntimePointerSize); in InvokeMethod() local 694 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeMethod() 719 if (!InvokeMethodImpl(soa, m, np_method, receiver, objects, &shorty, &result)) { in InvokeMethod() 757 ArtMethod* np_method = constructor->GetInterfaceMethodIfProxy(kRuntimePointerSize); in InvokeConstructor() local 758 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeConstructor() [all …]
|
/art/runtime/mirror/ |
D | class.cc | 546 ArtMethod* np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindClassMethodWithSignature() local 547 if (np_method->GetName() == name && np_method->GetSignature() == signature) { in FindClassMethodWithSignature() 718 ArtMethod* const np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindDeclaredDirectMethodByName() local 719 if (name == np_method->GetName()) { in FindDeclaredDirectMethodByName() 728 ArtMethod* const np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindDeclaredVirtualMethodByName() local 729 if (name == np_method->GetName()) { in FindDeclaredVirtualMethodByName() 1330 auto* np_method = m.GetInterfaceMethodIfProxy(kPointerSize); in GetDeclaredMethodInternal() local 1332 ObjPtr<String> np_name = np_method->ResolveNameString(); in GetDeclaredMethodInternal() 1333 if (!np_name->Equals(h_method_name.Get()) || !np_method->EqualParameters(h_args)) { in GetDeclaredMethodInternal() 1362 auto* np_method = m.GetInterfaceMethodIfProxy(kPointerSize); in GetDeclaredMethodInternal() local [all …]
|
/art/runtime/jit/ |
D | jit.cc | 936 ArtMethod* np_method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize); in MethodEntered() local 937 if (np_method->IsCompilable()) { in MethodEntered() 938 if (!np_method->IsNative()) { in MethodEntered() 940 ProfilingInfo::Create(thread, np_method, /* retry_allocation= */ true); in MethodEntered()
|