Home
last modified time | relevance | path

Searched refs:FindInterfaceMethod (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/art/test/800-smali/smali/
H A Db_21869691A.smali5 # an IncompatibleClassChangeError. FindInterfaceMethod assumes that the given type is an interface,
/aosp_15_r20/art/runtime/
H A Dart_method_test.cc135 list_class->FindInterfaceMethod("size", "()I", kRuntimePointerSize); in TEST_F()
H A Dclass_linker_test.cc1271 ArtMethod* Kj1 = K->FindInterfaceMethod("j1", void_sig, kRuntimePointerSize); in TEST_F()
1272 ArtMethod* Kj2 = K->FindInterfaceMethod("j2", void_sig, kRuntimePointerSize); in TEST_F()
1273 ArtMethod* Kk = K->FindInterfaceMethod("k", void_sig, kRuntimePointerSize); in TEST_F()
H A Dart_method.cc76 ArtMethod* ret = declaring_class->FindInterfaceMethod(GetDexCache(), in GetCanonicalMethod()
H A Dwell_known_classes.cc221 ? klass->FindInterfaceMethod(name, signature, pointer_size) in CacheMethod()
H A Dclass_linker.cc10026 resolved = klass->FindInterfaceMethod(dex_cache, method_idx, image_pointer_size_); in FindResolvedMethod()
10103 klass->FindInterfaceMethod(dex_cache, method_idx, image_pointer_size_); in FindIncompatibleMethod()
/aosp_15_r20/art/dex2oat/linker/
H A Dimage_test.cc139 ArtMethod* origin = iface_klass->FindInterfaceMethod("defaultMethod", "()V", pointer_size); in TEST_F()
H A Doat_writer.cc1493 ? klass_->FindInterfaceMethod(dex_cache_, method.GetIndex(), pointer_size_) in VisitMethod()
/aosp_15_r20/art/runtime/mirror/
H A Dclass.h946 ArtMethod* FindInterfaceMethod(std::string_view name,
951 ArtMethod* FindInterfaceMethod(std::string_view name,
956 ArtMethod* FindInterfaceMethod(ObjPtr<DexCache> dex_cache,
H A Dclass.cc574 ArtMethod* Class::FindInterfaceMethod(std::string_view name, in FindInterfaceMethod() function in art::mirror::Class
580 ArtMethod* Class::FindInterfaceMethod(std::string_view name, in FindInterfaceMethod() function in art::mirror::Class
586 ArtMethod* Class::FindInterfaceMethod(ObjPtr<DexCache> dex_cache, in FindInterfaceMethod() function in art::mirror::Class
594 return FindInterfaceMethod(name, signature, pointer_size); in FindInterfaceMethod()
/aosp_15_r20/art/runtime/jni/
H A Djni_internal.cc492 method = c->FindInterfaceMethod(name, sig, pointer_size); in FindMethodJNI()