Searched refs:exceptionObj (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/jni/ |
D | android_os_MessageQueue.cpp | 47 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj); 85 jthrowable exceptionObj = env->ExceptionOccurred(); in raiseAndClearException() local 87 raiseException(env, msg, exceptionObj); in raiseAndClearException() 88 env->DeleteLocalRef(exceptionObj); in raiseAndClearException() 106 void NativeMessageQueue::raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) { in raiseException() argument 107 if (exceptionObj) { in raiseException() 112 mExceptionObj = jthrowable(env->NewLocalRef(exceptionObj)); in raiseException() 114 jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG, exceptionObj); in raiseException() 117 jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG, exceptionObj); in raiseException()
|
D | android_os_MessageQueue.h | 55 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) = 0;
|