Searched refs:jthrowable (Results 1 – 7 of 7) sorted by relevance
/libnativehelper/ |
D | JNIHelp.c | 80 static bool GetExceptionSummary(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetExceptionSummary() 152 static bool GetStackTrace(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetStackTrace() 190 static void GetStackTraceOrSummary(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetStackTraceOrSummary() 197 jthrowable pendingException = (*env)->ExceptionOccurred(env); in GetStackTraceOrSummary() 224 jthrowable exception = (*env)->ExceptionOccurred(env); in DiscardPendingException() 271 if ((*env)->Throw(env, (jthrowable)instance) != JNI_OK) { in ThrowException() 337 jthrowable thrown = (*env)->ExceptionOccurred(env); in jniRegisterNativeMethods() 351 void jniLogException(JNIEnv* env, int priority, const char* tag, jthrowable thrown) { in jniLogException()
|
/libnativehelper/include/nativehelper/ |
D | JNIHelp.h | 133 [[maybe_unused]] static bool GetExceptionSummary(JNIEnv* env, jthrowable thrown, in GetExceptionSummary() 204 [[maybe_unused]] static bool GetStackTrace(JNIEnv* env, jthrowable thrown, in GetStackTrace() 243 [[maybe_unused]] static void GetStackTraceOrSummary(JNIEnv* env, jthrowable thrown, in GetStackTraceOrSummary() 251 jthrowable pendingException = env->ExceptionOccurred(); in GetStackTraceOrSummary() 278 jthrowable exception = env->ExceptionOccurred(); in DiscardPendingException() 330 if (env->Throw((jthrowable)instance) != JNI_OK) { in ThrowException() 381 jthrowable thrown = env->ExceptionOccurred(); in jniRegisterNativeMethods() 493 jthrowable exception = NULL) { 510 void jniLogException(JNIEnv* env, int priority, const char* tag, jthrowable thrown);
|
/libnativehelper/header_only_include/nativehelper/ |
D | utils.h | 69 operator jthrowable() const { return nullptr; } in jthrowable() function
|
/libnativehelper/tests/ |
D | JniSafeRegisterNativeMethods_test.cpp | 315 FN0(fl,NORMAL ,jthrowable) \ 338 FN(afl,NORMAL ,jthrowable,jthrowable) \ 625 EXPECT_NOT_EQUALISH_JNI_DESCRIPTORS("J", jthrowable); in TEST() 631 EXPECT_NOT_EQUALISH_JNI_DESCRIPTORS("[Z", jthrowable); in TEST() 655 EXPECT_EQUALISH_JNI_DESCRIPTORS("Ljava/lang/Throwable;", jthrowable); in TEST() 656 EXPECT_EQUALISH_JNI_DESCRIPTORS("Ljava/lang/Exception;", jthrowable); in TEST() 657 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 | 796 TYPE_TRAIT_FN(jthrowable, "Ljava/lang/Throwable;", kFastNative, kNotFinal, kSecondOrLate…
|