Searched defs:msg (Results 1 - 3 of 3) sorted by relevance

/libnativehelper/include/nativehelper/
H A DJNIHelp.h61 int jniThrowException(C_JNIEnv* env, const char* className, const char* msg);
66 int jniThrowNullPointerException(C_JNIEnv* env, const char* msg);
71 int jniThrowRuntimeException(C_JNIEnv* env, const char* msg);
126 inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) { argument
127 return jniThrowException(&env->functions, className, msg);
143 inline int jniThrowNullPointerException(JNIEnv* env, const char* msg) { argument
144 return jniThrowNullPointerException(&env->functions, msg);
147 inline int jniThrowRuntimeException(JNIEnv* env, const char* msg) { argument
148 return jniThrowRuntimeException(&env->functions, msg);
H A Djni.h540 void FatalError(const char* msg) argument
541 { functions->FatalError(this, msg); }
/libnativehelper/
H A DJNIHelp.cpp85 const char* msg; local
90 msg = "Native registration unable to find class; aborting...";
92 msg = tmp;
94 e->FatalError(msg);
99 const char* msg; local
102 msg = "RegisterNatives failed; aborting...";
104 msg = tmp;
106 e->FatalError(msg);
226 extern "C" int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) { argument
248 if ((*env)->ThrowNew(e, exceptionClass.get(), msg) !
263 jniThrowNullPointerException(C_JNIEnv* env, const char* msg) argument
267 jniThrowRuntimeException(C_JNIEnv* env, const char* msg) argument
[all...]

Completed in 36 milliseconds