Home
last modified time | relevance | path

Searched refs:summary (Results 1 – 2 of 2) sorted by relevance

/libnativehelper/
DJNIHelp.c230 struct ExpandableString summary; in DiscardPendingException() local
231 ExpandableStringInitialize(&summary); in DiscardPendingException()
232 GetExceptionSummary(env, exception, &summary); in DiscardPendingException()
233 const char* details = (summary.data != NULL) ? summary.data : "Unknown"; in DiscardPendingException()
235 ExpandableStringRelease(&summary); in DiscardPendingException()
339 struct ExpandableString summary; in jniRegisterNativeMethods() local
340 ExpandableStringInitialize(&summary); in jniRegisterNativeMethods()
341 if (GetExceptionSummary(env, thrown, &summary)) { in jniRegisterNativeMethods()
342 ALOGF("%s", summary.data); in jniRegisterNativeMethods()
344 ExpandableStringRelease(&summary); in jniRegisterNativeMethods()
[all …]
/libnativehelper/include/nativehelper/
DJNIHelp.h284 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()
[all …]