Lines Matching full:classname
42 * "className" looks like "java/lang/String". Aborts on failure.
45 int jniRegisterNativeMethods(C_JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods);
50 * The "className" argument will be passed directly to FindClass, which
61 int jniThrowException(C_JNIEnv* env, const char* className, const char* msg);
122 inline int jniRegisterNativeMethods(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods) {
123 return jniRegisterNativeMethods(&env->functions, className, gMethods, numMethods);
126 inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) {
127 return jniThrowException(&env->functions, className, msg);
130 extern "C" int jniThrowExceptionFmt(C_JNIEnv* env, const char* className, const char* fmt, va_list args);
136 inline int jniThrowExceptionFmt(JNIEnv* env, const char* className, const char* fmt, ...) {
139 return jniThrowExceptionFmt(&env->functions, className, fmt, args);