Home | History | Annotate | Download | only in nativehelper

Lines Matching full:classname

40  * "className" looks like "java/lang/String". Aborts on failure.
43 int jniRegisterNativeMethods(C_JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods);
48 * The "className" argument will be passed directly to FindClass, which
59 int jniThrowException(C_JNIEnv* env, const char* className, const char* msg);
120 inline int jniRegisterNativeMethods(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods) {
121 return jniRegisterNativeMethods(&env->functions, className, gMethods, numMethods);
124 inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) {
125 return jniThrowException(&env->functions, className, msg);
128 extern "C" int jniThrowExceptionFmt(C_JNIEnv* env, const char* className, const char* fmt, va_list args);
134 inline int jniThrowExceptionFmt(JNIEnv* env, const char* className, const char* fmt, ...) {
137 return jniThrowExceptionFmt(&env->functions, className, fmt, args);