Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/base/platform/
Delapsed-timer.h16 ElapsedTimer() : start_ticks_() {} in ElapsedTimer()
47 DCHECK_NE(started_, start_ticks_.IsNull()); in IsStarted()
48 return !start_ticks_.IsNull(); in IsStarted()
65 TimeDelta elapsed = now - start_ticks_; in Restart()
139 return start_ticks_; in start_ticks()
143 start_ticks_ = start_ticks; in set_start_ticks()
147 TimeTicks start_ticks_; member
/third_party/node/deps/v8/src/logging/
Druntime-call-stats.h68 inline bool IsStarted() const { return start_ticks_ != base::TimeTicks(); } in IsStarted()
109 elapsed_ += (now - start_ticks_); in Pause()
110 start_ticks_ = base::TimeTicks(); in Pause()
115 start_ticks_ = now; in Resume()
125 base::TimeTicks start_ticks_; variable