Home
last modified time | relevance | path

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

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