Lines Matching refs:timer_
90 explicit TimerTask(TimeDelta delay) : timer_(NULL), delay_(delay) { in TimerTask()
93 BaseTimer_Helper* timer_; variable
155 if (!timer_) // timer_ is null if we were orphaned. in Run()
171 if (timer_) { in ClearBaseTimer()
172 SelfType* self = static_cast<SelfType*>(timer_); in ClearBaseTimer()
181 timer_ = NULL; in ClearBaseTimer()
187 DCHECK(timer_); in ResetBaseTimer()
189 SelfType* self = static_cast<SelfType*>(timer_); in ResetBaseTimer()
240 if (timer_.IsRunning() && timer_.GetCurrentDelay() <= delay) in DelayFor()
244 timer_.Stop(); in DelayFor()
245 timer_.Start(delay, this, &DelayTimer<Receiver>::Check); in DelayFor()
266 OneShotTimer<DelayTimer<Receiver> > timer_; variable