HomeSort by relevance Sort by last modified time
    Searched refs:exceptionObj (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/jni/
android_os_MessageQueue.h 55 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) = 0;
android_os_MessageQueue.cpp 46 virtual void raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj);
69 jthrowable exceptionObj = env->ExceptionOccurred();
71 raiseException(env, msg, exceptionObj);
72 env->DeleteLocalRef(exceptionObj);
90 void NativeMessageQueue::raiseException(JNIEnv* env, const char* msg, jthrowable exceptionObj) {
91 if (exceptionObj) {
96 mExceptionObj = jthrowable(env->NewLocalRef(exceptionObj));
98 jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG, exceptionObj);
101 jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG, exceptionObj);

Completed in 46 milliseconds