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

/frameworks/base/core/jni/
H A Dandroid_os_MessageQueue.h55 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) = 0;
H A Dandroid_os_MessageQueue.cpp46 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj);
69 jthrowable exceptionObj = env->ExceptionOccurred(); local
71 raiseException(env, msg, exceptionObj);
72 env->DeleteLocalRef(exceptionObj);
90 void NativeMessageQueue::raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) { argument
91 if (exceptionObj) {
96 mExceptionObj = jthrowable(env->NewLocalRef(exceptionObj));
98 jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG, exceptionObj);
101 jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG, exceptionObj);

Completed in 346 milliseconds