| 815 | |
| 816 | #if !defined(__UCLIBC__) |
| 817 | void StackTrace::OutputToStream(std::ostream* os) const { |
| 818 | StreamBacktraceOutputHandler handler(os); |
| 819 | ProcessBacktrace(trace_, count_, &handler); |
| 820 | } |
| 821 | |
| 822 | void StackTrace::OutputToString(std::string& str) const { |
| 823 | StringBacktraceOutputHandler handler(str); |
no test coverage detected