Home
last modified time | relevance | path

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

/frameworks/base/core/jni/
Dandroid_os_MessageQueue.cpp38 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj);
57 jthrowable exceptionObj = env->ExceptionOccurred(); in raiseAndClearException() local
58 if (exceptionObj) { in raiseAndClearException()
60 raiseException(env, msg, exceptionObj); in raiseAndClearException()
61 env->DeleteLocalRef(exceptionObj); in raiseAndClearException()
78 void NativeMessageQueue::raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) { in raiseException() argument
79 if (exceptionObj) { in raiseException()
84 mExceptionObj = jthrowable(env->NewLocalRef(exceptionObj)); in raiseException()
86 jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG, exceptionObj); in raiseException()
89 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;