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

  /external/libchrome/base/timer/
mock_timer.cc 16 const base::Closure& user_task,
36 const base::Closure& user_task) {
38 user_task_ = user_task;
mock_timer.h 17 const base::Closure& user_task,
26 const base::Closure& user_task) override;
timer.cc 72 const base::Closure& user_task,
77 user_task_(user_task),
104 const base::Closure& user_task) {
105 SetTaskInfo(posted_from, delay, user_task);
144 const base::Closure& user_task) {
147 user_task_ = user_task;
timer.h 74 // user_task is retained or reset when it runs or stops.
80 const base::Closure& user_task,
97 // already running, it will be replaced to call the given |user_task|.
100 const base::Closure& user_task);
110 const base::Closure& user_task() const { return user_task_; } function in class:base::Timer
118 const base::Closure& user_task);
timer_unittest.cc 427 EXPECT_TRUE(timer.user_task().is_null());
439 ASSERT_FALSE(timer.user_task().is_null());
455 EXPECT_TRUE(timer.user_task().is_null());
528 // Since Reset happened before task ran, the user_task must not be cleared:
529 ASSERT_FALSE(timer.user_task().is_null());
  /external/libchrome/components/timers/
alarm_timer_chromeos.h 48 const base::Closure& user_task,
114 // start it. Useful if |user_task| or |delay| are not going to change.
119 const base::Closure& user_task);
134 // start it. Useful if |user_task| or |delay| are not going to change.
139 const base::Closure& user_task);
alarm_timer_chromeos.cc 334 const base::Closure& user_task,
336 : base::Timer(posted_from, delay, user_task, is_repeating),
385 DCHECK(!base::Timer::user_task().is_null());
404 base::Timer::posted_from(), base::Timer::user_task(),
409 base::Timer::user_task()));
458 const base::Closure& user_task)
459 : AlarmTimer(posted_from, delay, user_task, true) {
470 const base::Closure& user_task)
471 : AlarmTimer(posted_from, delay, user_task, false) {

Completed in 159 milliseconds