Lines Matching refs:summary
284 struct ExpandableString summary; in DiscardPendingException() local
285 ExpandableStringInitialize(&summary); in DiscardPendingException()
286 GetExceptionSummary(env, exception, &summary); in DiscardPendingException()
287 const char* details = (summary.data != NULL) ? summary.data : "Unknown"; in DiscardPendingException()
290 ExpandableStringRelease(&summary); in DiscardPendingException()
383 struct ExpandableString summary; in jniRegisterNativeMethods() local
384 ExpandableStringInitialize(&summary); in jniRegisterNativeMethods()
385 if (GetExceptionSummary(env, thrown, &summary)) { in jniRegisterNativeMethods()
386 __android_log_print(ANDROID_LOG_FATAL, "JNIHelp", "%s", summary.data); in jniRegisterNativeMethods()
388 ExpandableStringRelease(&summary); in jniRegisterNativeMethods()
495 struct ExpandableString summary; variable
496 ExpandableStringInitialize(&summary);
497 GetStackTraceOrSummary(env, exception, &summary);
498 const char* details = (summary.data != NULL) ? summary.data : "No memory to report exception";
500 ExpandableStringRelease(&summary);