Home
last modified time | relevance | path

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

/frameworks/base/core/jni/
Dandroid_os_MessageQueue.cpp47 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()
Dandroid_os_MessageQueue.h55 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) = 0;