OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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),
105
if (!
scheduled_task_
) {
123
// We can't reuse the
scheduled_task_
, so abandon it and post a new one.
137
DCHECK(
scheduled_task_
== NULL);
139
scheduled_task_
= new BaseTimerTaskInternal(this);
142
base::Bind(&BaseTimerTaskInternal::Run, base::Owned(
scheduled_task_
)),
147
base::Bind(&BaseTimerTaskInternal::Run, base::Owned(
scheduled_task_
)));
159
if (
scheduled_task_
) {
[
all
...]
timer.h
113
//
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 45 milliseconds