Lines Matching defs:output
26 InternalScopedString *output,
30 output_(output),
94 void StackTrace::PrintTo(InternalScopedString *output) const {
95 CHECK(output);
99 output, &dedup_token);
102 output->Append(" <empty stack>\n\n");
114 output->Append("\n");
118 output->AppendF("DEDUP_TOKEN: %s\n", dedup_token.data());
124 InternalScopedString output;
125 PrintTo(&output);
126 CopyStringToBuffer(output, out_buf, out_buf_size);
128 return output.length();
132 InternalScopedString output;
133 PrintTo(&output);
134 Printf("%s", output.data());
197 InternalScopedString output;
198 StackTraceTextPrinter printer(fmt, '\0', &output, nullptr);
200 output.clear();
201 output.Append("<can't symbolize>");
203 CopyStringToBuffer(output, out_buf, out_buf_size);