Home
last modified time | relevance | path

Searched refs:jniThrowException (Results 1 – 3 of 3) sorted by relevance

/libnativehelper/include/nativehelper/
DJNIHelp.h405 [[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/
DJNIHelp.c360 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/
Djni_helper_jni.cpp36 jniThrowException(env, c.c_str(), m.c_str()); in throwException()