Lines Matching refs:Timer
27 typedef std::vector<Timer *> TimerStack;
28 static std::atomic<Timer::Category *> g_categories;
31 std::atomic<bool> Timer::g_quiet(true);
32 std::atomic<unsigned> Timer::g_display_depth(0);
43 Timer::Category::Category(const char *cat) : m_name(cat) { in Category()
51 void Timer::SetQuiet(bool value) { g_quiet = value; } in SetQuiet()
53 Timer::Timer(Timer::Category &category, const char *format, ...) in Timer() function in Timer
74 Timer::~Timer() { in ~Timer()
99 void Timer::SetDisplayDepth(uint32_t depth) { g_display_depth = depth; } in SetDisplayDepth()
112 void Timer::ResetCategoryTimes() { in ResetCategoryTimes()
117 void Timer::DumpCategoryTimes(Stream *s) { in DumpCategoryTimes()