Lines Matching refs:os
52 // to the ostream os. The format for each line of the backtrace is:
61 std::ostream* os) {
64 for (size_t i = 0; (i < count) && os->good(); ++i) {
93 (*os) << "\t";
95 (*os) << symbol->Name << " [0x" << trace[i] << "+"
99 (*os) << "(No symbol) [0x" << trace[i] << "]";
102 (*os) << " (" << line.FileName << ":" << line.LineNumber << ")";
104 (*os) << "\n";
181 void StackTrace::OutputToStream(std::ostream* os) const {
185 (*os) << "Error initializing symbols (" << error
187 for (int i = 0; (i < count_) && os->good(); ++i) {
188 (*os) << "\t" << trace_[i] << "\n";
191 (*os) << "Backtrace:\n";
192 context->OutputTraceToStream(trace_, count_, os);