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);
124 inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) {
125 return jniThrowException(&env->functions, className, msg);
131 * Equivalent to jniThrowException but with a printf-like format string and
  /libnativehelper/
JNIHelp.cpp 208 extern "C" int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) {
242 return jniThrowException(env, className, msgBuf);
246 return jniThrowException(env, "java/lang/NullPointerException", msg);
250 return jniThrowException(env, "java/lang/RuntimeException", msg);
256 return jniThrowException(env, "java/io/IOException", message);

Completed in 507 milliseconds