Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/jni/
H A Dandroid_os_MessageQueue.cpp46 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj);
84 jthrowable exceptionObj = env->ExceptionOccurred(); in raiseAndClearException() local
86 raiseException(env, msg, exceptionObj); in raiseAndClearException()
87 env->DeleteLocalRef(exceptionObj); in raiseAndClearException()
105 void NativeMessageQueue::raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) { in raiseException() argument
106 if (exceptionObj) { in raiseException()
111 mExceptionObj = jthrowable(env->NewLocalRef(exceptionObj)); in raiseException()
113 jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG, exceptionObj); in raiseException()
116 jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG, exceptionObj); in raiseException()
H A Dandroid_os_MessageQueue.h55 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) = 0;