Home
last modified time | relevance | path

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

/libnativehelper/
DJNIHelp.c60 jmethodID methodId = (*env)->GetMethodID(env, clazz, methodName, descriptor); in FindMethod()
130 jmethodID init = (*env)->GetMethodID(env, clazz, "<init>", "()V"); in NewStringWriter()
144 jmethodID init = (*env)->GetMethodID(env, clazz, "<init>", "(Ljava/io/Writer;)V"); in NewPrintWriter()
257 jmethodID init = (*env)->GetMethodID(env, exceptionClass, "<init>", ctorSig); in ThrowException()
DJniConstants.c95 method = (*env)->GetMethodID(env, cls, name, signature); in FindMethod()
/libnativehelper/include/nativehelper/
DJNIHelp.h107 jmethodID methodId = env->GetMethodID(clazz, methodName, descriptor); in FindMethod()
179 jmethodID init = env->GetMethodID(clazz, "<init>", "()V"); in NewStringWriter()
193 jmethodID init = env->GetMethodID(clazz, "<init>", "(Ljava/io/Writer;)V"); in NewPrintWriter()
311 jmethodID init = env->GetMethodID(exceptionClass, "<init>", ctorSig); in ThrowException()
/libnativehelper/include_jni/
Djni.h197 jmethodID (*GetMethodID)(JNIEnv*, jclass, const char*, const char*); member
589 jmethodID GetMethodID(jclass clazz, const char* name, const char* sig) in GetMethodID() function
590 { return functions->GetMethodID(this, clazz, name, sig); } in GetMethodID()