Lines Matching refs:dst
118 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()
244 struct ExpandableString* dst) { in GetStackTraceOrSummary() argument
258 ExpandableStringAssign(dst, "<no pending exception>"); in GetStackTraceOrSummary()
264 if (!GetStackTrace(env, thrown, dst)) { in GetStackTraceOrSummary()
267 GetExceptionSummary(env, thrown, dst); in GetStackTraceOrSummary()