Searched refs:exceptionObj (Results 1 – 2 of 2) sorted by relevance
/aosp14/frameworks/base/core/jni/ |
H A D | android_os_MessageQueue.cpp | 46 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 D | android_os_MessageQueue.h | 55 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) = 0;
|