Lines Matching defs:Trace
28 #include "Trace.h"
44 vector<vector<Trace *> > Trace::stacks;
49 vector<string> Trace::indent;
67 void Trace::message(int priority, const char *msg) {
128 * @memo Create a new Trace instance and update stack.
134 * Trace class should be created on the stack so they
138 Trace::Trace(std::string myRoutine) : routine(myRoutine) {
153 Trace::~Trace() {
165 void Trace::stackTrace() {
167 for (vector<Trace *>::size_type i = stacks[tid].size() - 1; ; i--) {