Home
last modified time | relevance | path

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

/art/test/115-native-bridge/
Dnativebridge.cc71 NativeBridgeMethod* nb_method = find_native_bridge_method(methods[i].name); in trampoline_JNI_OnLoad() local
72 if (nb_method != nullptr) { in trampoline_JNI_OnLoad()
74 if (nb_method->static_method) { in trampoline_JNI_OnLoad()
75 mid = env->GetStaticMethodID(klass, methods[i].name, nb_method->signature); in trampoline_JNI_OnLoad()
77 mid = env->GetMethodID(klass, methods[i].name, nb_method->signature); in trampoline_JNI_OnLoad()
83 methods[i].name, nb_method->signature, shorty); in trampoline_JNI_OnLoad()