Searched refs:GetMethodID (Results 1 – 4 of 4) sorted by relevance
/libnativehelper/ |
D | JNIHelp.c | 60 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()
|
D | JniConstants.c | 95 method = (*env)->GetMethodID(env, cls, name, signature); in FindMethod()
|
/libnativehelper/include/nativehelper/ |
D | JNIHelp.h | 107 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/ |
D | jni.h | 197 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()
|