Searched refs:jniThrowException (Results 1 - 2 of 2) sorted by relevance
/libnativehelper/include/nativehelper/ |
H A D | JNIHelp.h | 66 int jniThrowException(C_JNIEnv* env, const char* className, const char* msg); 131 inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) { function 132 return jniThrowException(&env->functions, className, msg); 138 * Equivalent to jniThrowException but with a printf-like format string and
|
/libnativehelper/ |
H A D | JNIHelp.cpp | 209 extern "C" int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) { function 243 return jniThrowException(env, className, msgBuf); 247 return jniThrowException(env, "java/lang/NullPointerException", msg); 251 return jniThrowException(env, "java/lang/RuntimeException", msg); 257 return jniThrowException(env, "java/io/IOException", message);
|
Completed in 3 milliseconds