Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dclass.cc561 ArtMethod* np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindClassMethodWithSignature() local
562 if (np_method->GetName() == name && np_method->GetSignature() == signature) { in FindClassMethodWithSignature()
729 ArtMethod* const np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindDeclaredDirectMethodByName() local
730 if (name == np_method->GetName()) { in FindDeclaredDirectMethodByName()
740 ArtMethod* const np_method = method.GetInterfaceMethodIfProxy(pointer_size); in FindDeclaredVirtualMethodByName() local
741 if (name == np_method->GetName()) { in FindDeclaredVirtualMethodByName()
1286 auto* np_method = m.GetInterfaceMethodIfProxy(kPointerSize); in GetDeclaredMethodInternal() local
1288 ObjPtr<String> np_name = np_method->GetNameAsString(self); in GetDeclaredMethodInternal()
1289 if (!np_name->Equals(h_method_name.Get()) || !np_method->EqualParameters(h_args)) { in GetDeclaredMethodInternal()
1308 auto* np_method = m.GetInterfaceMethodIfProxy(kPointerSize); in GetDeclaredMethodInternal() local
[all …]
/art/runtime/
Dreflection.cc633 auto* np_method = m->GetInterfaceMethodIfProxy(kRuntimePointerSize); in InvokeMethod() local
634 const DexFile::TypeList* classes = np_method->GetParameterTypeList(); in InvokeMethod()
664 const char* shorty = np_method->GetShorty(&shorty_len); in InvokeMethod()
666 if (!arg_array.BuildArgArrayFromObjectArray(receiver, objects, np_method, soa.Self())) { in InvokeMethod()