Searched refs:jniThrowException (Results 1 – 3 of 3) sorted by relevance
/libnativehelper/include/nativehelper/ |
D | JNIHelp.h | 405 [[maybe_unused]] static int jniThrowException(JNIEnv* env, const char* className, const char* msg) { in jniThrowException() function 451 return jniThrowException(env, className, msgBuf); in jniThrowExceptionFmt() 455 return jniThrowException(env, "java/lang/NullPointerException", msg); in jniThrowNullPointerException() 459 return jniThrowException(env, "java/lang/RuntimeException", msg); in jniThrowRuntimeException() 466 return jniThrowException(env, "java/io/IOException", message); in jniThrowIOException() 507 int jniThrowException(JNIEnv* env, const char* className, const char* msg);
|
/libnativehelper/ |
D | JNIHelp.c | 360 int jniThrowException(JNIEnv* env, const char* className, const char* message) { in jniThrowException() function 367 return jniThrowException(env, className, msgBuf); in jniThrowExceptionFmt() 371 return jniThrowException(env, "java/lang/NullPointerException", msg); in jniThrowNullPointerException() 375 return jniThrowException(env, "java/lang/RuntimeException", msg); in jniThrowRuntimeException() 381 return jniThrowException(env, "java/io/IOException", message); in jniThrowIOException()
|
/libnativehelper/tests_mts/jni/ |
D | jni_helper_jni.cpp | 36 jniThrowException(env, c.c_str(), m.c_str()); in throwException()
|