Home
last modified time | relevance | path

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

/dalvik/libnativehelper/include/nativehelper/
DJNIHelp.h54 int jniThrowException(C_JNIEnv* env, const char* className, const char* msg);
116 inline int jniThrowException(JNIEnv* env, const char* className, in jniThrowException() function
119 return jniThrowException(&env->functions, className, msg); in jniThrowException()
/dalvik/libnativehelper/
DJNIHelp.c177 int jniThrowException(JNIEnv* env, const char* className, const char* msg) in jniThrowException() function
218 return jniThrowException(env, "java/lang/NullPointerException", msg); in jniThrowNullPointerException()
226 return jniThrowException(env, "java/lang/RuntimeException", msg); in jniThrowRuntimeException()
236 return jniThrowException(env, "java/io/IOException", message); in jniThrowIOException()