Home | History | Annotate | Download | only in src

Lines Matching full:trace

173 // stack trace.
174 const char kStackTraceMarker[] = "\nStack trace:\n";
749 // Returns the current OS stack trace as a String.
758 // trace but Bar() and CurrentOsStackTraceExceptTop() won't.
1941 String()); // No stack trace, either.
3439 // arbitrarily long test failure message and stack trace.
3506 // trace stack maintained by Google Test.
3509 TraceInfo trace;
3510 trace.file = file;
3511 trace.line = line;
3512 trace.message = message.GetString();
3514 UnitTest::GetInstance()->PushGTestTrace(trace);
3526 // Returns the current OS stack trace as a String. Parameters:
3529 // in the trace.
3758 msg << "\n" << GTEST_NAME_ << " trace:";
3762 const internal::TraceInfo& trace = impl_->gtest_trace_stack()[i - 1];
3763 msg << "\n" << internal::FormatFileLocation(trace.file, trace.line)
3764 << " " << trace.message;
3922 // Pushes a trace defined by SCOPED_TRACE() on to the per-thread
3923 // Google Test trace stack.
3925 void UnitTest::PushGTestTrace(const internal::TraceInfo& trace) {
3927 impl_->gtest_trace_stack().push_back(trace);
3930 // Pops a trace from the per-thread Google Test trace stack.
4451 // Sets the OS stack trace getter.
4453 // Does nothing if the input and the current OS stack trace getter are
4464 // Returns the current OS stack trace getter if it is not NULL;
4508 // Returns the current OS stack trace as a String.
4517 // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.