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

  /frameworks/ex/framesequence/jni/
JNIHelpers.cpp 20 void jniThrowException(JNIEnv* env, const char* className, const char* msg) {
  /libnativehelper/include/nativehelper/
JNIHelp.h 61 int jniThrowException(C_JNIEnv* env, const char* className, const char* msg);
132 inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) {
133 return jniThrowException(&env->functions, className, msg);
139 * Equivalent to jniThrowException but with a printf-like format string and
  /libnativehelper/
JNIHelp.cpp 275 extern "C" int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) {
309 return jniThrowException(env, className, msgBuf);
313 return jniThrowException(env, "java/lang/NullPointerException", msg);
317 return jniThrowException(env, "java/lang/RuntimeException", msg);
323 return jniThrowException(env, "java/io/IOException", message);

Completed in 77 milliseconds