Home
last modified time | relevance | path

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

/art/test/004-JniTest/
Djni_test.cc156 jmethodID miranda_method = env->GetMethodID(abstract_class, "inInterface", "()Z"); in Java_Main_testGetMirandaMethodNative() local
157 assert(miranda_method != nullptr); in Java_Main_testGetMirandaMethodNative()
158 return env->ToReflectedMethod(abstract_class, miranda_method, JNI_FALSE); in Java_Main_testGetMirandaMethodNative()
/art/runtime/
Dclass_linker.cc4941 ArtMethod* miranda_method = nullptr; in LinkInterfaceMethods() local
4944 miranda_method = mir_method; in LinkInterfaceMethods()
4948 if (miranda_method == nullptr) { in LinkInterfaceMethods()
4949 miranda_method = reinterpret_cast<ArtMethod*>(allocator.Alloc(method_size)); in LinkInterfaceMethods()
4950 CHECK(miranda_method != nullptr); in LinkInterfaceMethods()
4952 new(miranda_method) ArtMethod(*interface_method, image_pointer_size_); in LinkInterfaceMethods()
4953 miranda_methods.push_back(miranda_method); in LinkInterfaceMethods()
4955 method_array->SetElementPtrSize(j, miranda_method, image_pointer_size_); in LinkInterfaceMethods()