Home
last modified time | relevance | path

Searched refs:np_method (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dreflection.cc462 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()
735 auto* np_method = m->GetInterfaceMethodIfProxy(kRuntimePointerSize); in InvokeMethod() local
736 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeMethod()
761 if (!InvokeMethodImpl(soa, m, np_method, receiver, objects, &shorty, &result)) { in InvokeMethod()
799 ArtMethod* np_method = constructor->GetInterfaceMethodIfProxy(kRuntimePointerSize); in InvokeConstructor() local
800 if (!CheckArgsForInvokeMethod(np_method, objects)) { in InvokeConstructor()
[all …]
/art/runtime/mirror/
Dclass.cc667 ArtMethod* np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindClassMethodWithSignature() local
668 if (np_method->GetName() == name && np_method->GetSignature() == signature) { in FindClassMethodWithSignature()
839 ArtMethod* const np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindDeclaredDirectMethodByName() local
840 if (name == np_method->GetName()) { in FindDeclaredDirectMethodByName()
849 ArtMethod* const np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindDeclaredVirtualMethodByName() local
850 if (name == np_method->GetName()) { in FindDeclaredVirtualMethodByName()
1479 auto* np_method = m.GetInterfaceMethodIfProxy(kPointerSize); in GetDeclaredMethodInternal() local
1481 ObjPtr<String> np_name = np_method->ResolveNameString(); in GetDeclaredMethodInternal()
1482 if (!np_name->Equals(h_method_name.Get()) || !np_method->EqualParameters(h_args)) { in GetDeclaredMethodInternal()
1511 auto* np_method = m.GetInterfaceMethodIfProxy(kPointerSize); in GetDeclaredMethodInternal() local
[all …]
/art/runtime/jit/
Djit.cc1629 ArtMethod* np_method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize); in MethodEntered() local
1630 if (np_method->IsCompilable()) { in MethodEntered()
1631 if (!np_method->IsNative() && GetCodeCache()->CanAllocateProfilingInfo()) { in MethodEntered()
1633 ProfilingInfo::Create(thread, np_method, /* retry_allocation= */ true); in MethodEntered()