Home
last modified time | relevance | path

Searched refs:m_timer_start (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Core/
DTimer.cpp81 m_timer_start (), in Timer()
102 m_timer_start = start_time; in Timer()
124 if (m_timer_start.IsValid()) in ~Timer()
126 m_timer_ticks += (stop_time - m_timer_start); in ~Timer()
127 m_timer_start.Clear(); in ~Timer()
183 if (m_timer_start.IsValid()) in GetTimerElapsedNanoSeconds()
184 timer_ticks += (TimeValue::Now() - m_timer_start); in GetTimerElapsedNanoSeconds()
192 if (m_timer_start.IsValid()) in ChildStarted()
194 m_timer_ticks += (start_time - m_timer_start); in ChildStarted()
195 m_timer_start.Clear(); in ChildStarted()
[all …]
/external/lldb/include/lldb/Core/
DTimer.h84 TimeValue m_timer_start; variable