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

  /external/chromium_org/base/timer/
timer.cc 43 timer_->scheduled_task_ = NULL;
63 : scheduled_task_(NULL),
74 : scheduled_task_(NULL),
113 if (!scheduled_task_) {
131 // We can't reuse the scheduled_task_, so abandon it and post a new one.
145 DCHECK(scheduled_task_ == NULL);
147 scheduled_task_ = new BaseTimerTaskInternal(this);
150 base::Bind(&BaseTimerTaskInternal::Run, base::Owned(scheduled_task_)),
155 base::Bind(&BaseTimerTaskInternal::Run, base::Owned(scheduled_task_)));
167 if (scheduled_task_) {
    [all...]
timer.h 109 // scheduled_task_ if it is non-null.
120 // Allocates a new scheduled_task_ and posts it on the current MessageLoop
121 // with the given |delay|. scheduled_task_ must be NULL. scheduled_run_time_
125 // Disable scheduled_task_ and abandon it so that it no longer refers back to
138 // When non-NULL, the scheduled_task_ is waiting in the MessageLoop to call
140 BaseTimerTaskInternal* scheduled_task_; member in class:base::Timer
149 // The estimated time that the MessageLoop will run the scheduled_task_ that

Completed in 475 milliseconds