Searched refs:scheduled_task_ (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/base/timer/
H A Dtimer.cc40 timer_->scheduled_task_ = NULL;
60 : scheduled_task_(NULL),
71 : scheduled_task_(NULL),
102 if (!scheduled_task_) {
117 // We can't reuse the scheduled_task_, so abandon it and post a new one.
131 DCHECK(scheduled_task_ == NULL);
133 scheduled_task_ = new BaseTimerTaskInternal(this);
135 base::Bind(&BaseTimerTaskInternal::Run, base::Owned(scheduled_task_)),
147 if (scheduled_task_) {
148 scheduled_task_
[all...]
H A Dtimer.h113 // scheduled_task_ if it is non-null.
121 // Allocates a new scheduled_task_ and posts it on the current MessageLoop
122 // with the given |delay|. scheduled_task_ must be NULL. scheduled_run_time_
126 // Disable scheduled_task_ and abandon it so that it no longer refers back to
139 // When non-NULL, the scheduled_task_ is waiting in the MessageLoop to call
141 BaseTimerTaskInternal* scheduled_task_; member in class:base::Timer
150 // The estimated time that the MessageLoop will run the scheduled_task_ that

Completed in 222 milliseconds