HomeSort by relevance Sort by last modified time
    Searched defs:jniThrowException (Results 1 - 2 of 2) sorted by null

  /libnativehelper/include/nativehelper/
JNIHelp.h 59 int jniThrowException(C_JNIEnv* env, const char* className, const char* msg);
119 inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) {
120 return jniThrowException(&env->functions, className, msg);
126 * Equivalent to jniThrowException but with a printf-like format string and
  /libnativehelper/
JNIHelp.cpp 206 extern "C" int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) {
240 return jniThrowException(env, className, msgBuf);
244 return jniThrowException(env, "java/lang/NullPointerException", msg);
248 return jniThrowException(env, "java/lang/RuntimeException", msg);
254 return jniThrowException(env, "java/io/IOException", message);

Completed in 42 milliseconds