Home
last modified time | relevance | path

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

/libnativehelper/
DJNIHelp.c65 static bool AppendJString(JNIEnv* env, jstring text, struct ExpandableString* dst) { in AppendJString() argument
70 bool success = ExpandableStringAppend(dst, utfText); in AppendJString()
80 static bool GetExceptionSummary(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetExceptionSummary() argument
86 ExpandableStringAssign(dst, "<error getting class name>"); in GetExceptionSummary()
94 if (!AppendJString(env, className, dst)) { in GetExceptionSummary()
95 ExpandableStringAssign(dst, "<error getting class name UTF-8>"); in GetExceptionSummary()
108 success = (ExpandableStringAppend(dst, ": ") && AppendJString(env, message, dst)); in GetExceptionSummary()
121 ExpandableStringAppend(dst, "<error getting message>"); in GetExceptionSummary()
152 static bool GetStackTrace(JNIEnv* env, jthrowable thrown, struct ExpandableString* dst) { in GetStackTrace() argument
185 bool success = AppendJString(env, trace, dst); in GetStackTrace()
[all …]
/libnativehelper/include/nativehelper/
DJNIHelp.h118 struct ExpandableString* dst) { in AppendJString() argument
123 bool success = ExpandableStringAppend(dst, utfText); in AppendJString()
134 struct ExpandableString* dst) { in GetExceptionSummary() argument
140 ExpandableStringAssign(dst, "<error getting class name>"); in GetExceptionSummary()
148 if (!AppendJString(env, className, dst)) { in GetExceptionSummary()
149 ExpandableStringAssign(dst, "<error getting class name UTF-8>"); in GetExceptionSummary()
164 bool success = (ExpandableStringAppend(dst, ": ") && AppendJString(env, message, dst)); in GetExceptionSummary()
173 ExpandableStringAppend(dst, "<error getting message>"); in GetExceptionSummary()
205 struct ExpandableString* dst) { in GetStackTrace() argument
238 bool success = AppendJString(env, trace, dst); in GetStackTrace()
[all …]