Searched refs:jniThrowException (Results 1 – 2 of 2) sorted by relevance
/libnativehelper/include/nativehelper/ |
D | JNIHelp.h | 61 int jniThrowException(C_JNIEnv* env, const char* className, const char* msg); 126 inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) { in jniThrowException() function 127 return jniThrowException(&env->functions, className, msg); in jniThrowException()
|
/libnativehelper/ |
D | JNIHelp.cpp | 207 extern "C" int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) { in jniThrowException() function 241 return jniThrowException(env, className, msgBuf); in jniThrowExceptionFmt() 245 return jniThrowException(env, "java/lang/NullPointerException", msg); in jniThrowNullPointerException() 249 return jniThrowException(env, "java/lang/RuntimeException", msg); in jniThrowRuntimeException() 255 return jniThrowException(env, "java/io/IOException", message); in jniThrowIOException()
|