Searched refs:jthrowable (Results 1 – 6 of 6) sorted by relevance
/libnativehelper/ |
D | JNIHelp.c | 80 static bool GetExceptionSummary(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetExceptionSummary() 150 static bool GetStackTrace(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetStackTrace() 188 static void GetStackTraceOrSummary(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetStackTraceOrSummary() 195 jthrowable pendingException = (*env)->ExceptionOccurred(env); in GetStackTraceOrSummary() 222 jthrowable exception = (*env)->ExceptionOccurred(env); in DiscardPendingException() 269 if ((*env)->Throw(env, (jthrowable)instance) != JNI_OK) { in ThrowException() 335 jthrowable thrown = (*env)->ExceptionOccurred(env); in jniRegisterNativeMethods() 349 void jniLogException(JNIEnv* env, int priority, const char* tag, jthrowable thrown) { in jniLogException()
|
/libnativehelper/include/nativehelper/ |
D | JNIHelp.h | 128 [[maybe_unused]] static bool GetExceptionSummary(JNIEnv* env, jthrowable thrown, in GetExceptionSummary() 199 [[maybe_unused]] static bool GetStackTrace(JNIEnv* env, jthrowable thrown, in GetStackTrace() 238 [[maybe_unused]] static void GetStackTraceOrSummary(JNIEnv* env, jthrowable thrown, in GetStackTraceOrSummary() 246 jthrowable pendingException = env->ExceptionOccurred(); in GetStackTraceOrSummary() 273 jthrowable exception = env->ExceptionOccurred(); in DiscardPendingException() 325 if (env->Throw((jthrowable)instance) != JNI_OK) { in ThrowException() 376 jthrowable thrown = env->ExceptionOccurred(); in jniRegisterNativeMethods() 488 jthrowable exception = NULL) { 505 void jniLogException(JNIEnv* env, int priority, const char* tag, jthrowable thrown);
|
/libnativehelper/tests/ |
D | JniSafeRegisterNativeMethods_test.cpp | 327 FN0(fl,NORMAL ,jthrowable) \ 350 FN(afl,NORMAL ,jthrowable,jthrowable) \ 637 EXPECT_NOT_EQUALISH_JNI_DESCRIPTORS("J", jthrowable); in TEST() 643 EXPECT_NOT_EQUALISH_JNI_DESCRIPTORS("[Z", jthrowable); in TEST() 667 EXPECT_EQUALISH_JNI_DESCRIPTORS("Ljava/lang/Throwable;", jthrowable); in TEST() 668 EXPECT_EQUALISH_JNI_DESCRIPTORS("Ljava/lang/Exception;", jthrowable); in TEST() 669 EXPECT_EQUALISH_JNI_DESCRIPTORS("Ljava/lang/Error;", jthrowable); in TEST()
|
/libnativehelper/tests_mts/jni/ |
D | jni_helper_jni.cpp | 70 static void logException(JNIEnv* env, jclass /*clazz*/, jthrowable throwable) { in logException()
|
/libnativehelper/include_jni/ |
D | jni.h | 74 typedef _jthrowable* jthrowable; typedef 96 typedef jobject jthrowable; typedef 172 jint (*Throw)(JNIEnv*, jthrowable); 174 jthrowable (*ExceptionOccurred)(JNIEnv*); 523 jint Throw(jthrowable obj) in Throw() 529 jthrowable ExceptionOccurred() in ExceptionOccurred()
|
/libnativehelper/include_platform_header_only/nativehelper/detail/ |
D | signature_checker.h | 795 TYPE_TRAIT_FN(jthrowable, "Ljava/lang/Throwable;", kFastNative, kNotFinal, kSecondOrLate…
|