Home
last modified time | relevance | path

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

/libnativehelper/include/nativehelper/
DJNIHelp.h60 MODULE_API int jniThrowException(C_JNIEnv* env, const char* className, const char* msg);
198 inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) { in jniThrowException() function
199 return jniThrowException(&env->functions, className, msg); in jniThrowException()
/libnativehelper/
Dlibnativehelper.map.txt11 jniThrowException;
DJNIHelp.cpp199 MODULE_API int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) { in jniThrowException() function
233 return jniThrowException(env, className, msgBuf); in jniThrowExceptionFmt()
237 return jniThrowException(env, "java/lang/NullPointerException", msg); in jniThrowNullPointerException()
241 return jniThrowException(env, "java/lang/RuntimeException", msg); in jniThrowRuntimeException()
247 return jniThrowException(env, "java/io/IOException", message); in jniThrowIOException()