Lines Matching refs:Timer
29 typedef std::vector<Timer *> TimerStack;
30 static std::atomic<Timer::Category *> g_categories;
38 std::atomic<bool> Timer::g_quiet(true);
39 std::atomic<unsigned> Timer::g_display_depth(0);
50 Timer::Category::Category(const char *cat) : m_name(cat) { in Category()
60 void Timer::SetQuiet(bool value) { g_quiet = value; } in SetQuiet()
62 Timer::Timer(Timer::Category &category, const char *format, ...) in Timer() function in Timer
83 Timer::~Timer() { in ~Timer()
110 void Timer::SetDisplayDepth(uint32_t depth) { g_display_depth = depth; } in SetDisplayDepth()
129 void Timer::ResetCategoryTimes() { in ResetCategoryTimes()
137 void Timer::DumpCategoryTimes(Stream *s) { in DumpCategoryTimes()