Searched refs:exception (Results 1 – 2 of 2) sorted by relevance
/libnativehelper/ |
D | JNIHelp.cpp | 115 static bool getExceptionSummary(C_JNIEnv* env, jthrowable exception, std::string& result) { in getExceptionSummary() argument 119 … scoped_local_ref<jclass> exceptionClass(env, (*env)->GetObjectClass(e, exception)); // can't fail in getExceptionSummary() 144 (jstring) (*env)->CallObjectMethod(e, exception, getMessage)); in getExceptionSummary() 166 static bool getStackTrace(C_JNIEnv* env, jthrowable exception, std::string& result) { in getStackTrace() argument 198 … scoped_local_ref<jclass> exceptionClass(env, (*env)->GetObjectClass(e, exception)); // can't fail in getStackTrace() 201 (*env)->CallVoidMethod(e, exception, printStackTraceMethod, printWriter.get()); in getStackTrace() 229 scoped_local_ref<jthrowable> exception(env, (*env)->ExceptionOccurred(e)); in jniThrowException() local 232 if (exception.get() != NULL) { in jniThrowException() 234 getExceptionSummary(env, exception.get(), text); in jniThrowException() 275 static std::string jniGetStackTrace(C_JNIEnv* env, jthrowable exception) { in jniGetStackTrace() argument [all …]
|
/libnativehelper/include/nativehelper/ |
D | JNIHelp.h | 110 void jniLogException(C_JNIEnv* env, int priority, const char* tag, jthrowable exception); 171 inline void jniLogException(JNIEnv* env, int priority, const char* tag, jthrowable exception = NULL… 172 jniLogException(&env->functions, priority, tag, exception);
|