Home | History | Annotate | Download | only in src

Lines Matching full:trace

161 // stack trace.
162 const char kStackTraceMarker[] = "\nStack trace:\n";
719 // Returns the current OS stack trace as a String.
728 // trace but Bar() and CurrentOsStackTraceExceptTop() won't.
1936 String()); // No stack trace, either.
3282 // trace stack maintained by Google Test.
3285 TraceInfo trace;
3286 trace.file = file;
3287 trace.line = line;
3288 trace.message = message.GetString();
3290 UnitTest::GetInstance()->PushGTestTrace(trace);
3302 // Returns the current OS stack trace as a String. Parameters:
3305 // in the trace.
3548 msg << "\n" << GTEST_NAME_ << " trace:";
3551 const internal::TraceInfo& trace =
3553 msg << "\n" << internal::FormatFileLocation(trace.file, trace.line)
3554 << " " << trace.message;
3712 // Pushes a trace defined by SCOPED_TRACE() on to the per-thread
3713 // Google Test trace stack.
3715 void UnitTest::PushGTestTrace(const internal::TraceInfo& trace) {
3717 impl_->gtest_trace_stack()->PushFront(trace);
3720 // Pops a trace from the per-thread Google Test trace stack.
4209 // Sets the OS stack trace getter.
4211 // Does nothing if the input and the current OS stack trace getter are
4222 // Returns the current OS stack trace getter if it is not NULL;
4292 // Returns the current OS stack trace as a String.
4301 // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.