HomeSort by relevance Sort by last modified time
    Searched refs:scheduled_task_ (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/timer/
timer.cc 47 timer_->scheduled_task_ = NULL;
70 : scheduled_task_(nullptr),
88 : scheduled_task_(nullptr),
133 if (!scheduled_task_) {
151 // We can't reuse the scheduled_task_, so abandon it and post a new one.
169 DCHECK(scheduled_task_ == NULL);
171 scheduled_task_ = new BaseTimerTaskInternal(this);
174 base::Bind(&BaseTimerTaskInternal::Run, base::Owned(scheduled_task_)),
179 base::Bind(&BaseTimerTaskInternal::Run, base::Owned(scheduled_task_)));
195 if (scheduled_task_) {
    [all...]
timer.h 130 // scheduled_task_ if it is non-null.
147 // Allocates a new scheduled_task_ and posts it on the current MessageLoop
148 // with the given |delay|. scheduled_task_ must be NULL. scheduled_run_time_
157 // Disable scheduled_task_ and abandon it so that it no longer refers back to
172 // When non-NULL, the scheduled_task_ is waiting in the MessageLoop to call
174 BaseTimerTaskInternal* scheduled_task_; member in class:base::Timer
187 // The estimated time that the MessageLoop will run the scheduled_task_ that

Completed in 55 milliseconds