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

/frameworks/base/core/jni/
H A Dandroid_os_MessageQueue.cpp38 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj);
57 jthrowable exceptionObj = env->ExceptionOccurred(); local
58 if (exceptionObj) {
60 raiseException(env, msg, exceptionObj);
61 env->DeleteLocalRef(exceptionObj);
78 void NativeMessageQueue::raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) { argument
79 if (exceptionObj) {
84 mExceptionObj = jthrowable(env->NewLocalRef(exceptionObj));
86 jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG, exceptionObj);
89 jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG, exceptionObj);
[all...]

Completed in 43 milliseconds