OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exceptionObj
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/jni/
android_os_MessageQueue.cpp
38
virtual void raiseException(JNIEnv* env, const char* msg, jthrowable
exceptionObj
);
57
jthrowable
exceptionObj
= env->ExceptionOccurred();
58
if (
exceptionObj
) {
60
raiseException(env, msg,
exceptionObj
);
61
env->DeleteLocalRef(
exceptionObj
);
78
void NativeMessageQueue::raiseException(JNIEnv* env, const char* msg, jthrowable
exceptionObj
) {
79
if (
exceptionObj
) {
84
mExceptionObj = jthrowable(env->NewLocalRef(
exceptionObj
));
86
jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG,
exceptionObj
);
89
jniLogException(env, ANDROID_LOG_ERROR, LOG_TAG,
exceptionObj
);
[
all
...]
android_os_MessageQueue.h
55
virtual void raiseException(JNIEnv* env, const char* msg, jthrowable
exceptionObj
) = 0;
Completed in 78 milliseconds