OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OneShotTimer
(Results
1 - 6
of
6
) sorted by null
/external/libchrome/base/timer/
mock_timer.h
19
class MockOneShotTimer : public
OneShotTimer
{
mock_timer.cc
27
:
OneShotTimer
(&clock_),
29
OneShotTimer
::SetTaskRunner(test_task_runner_);
timer.h
5
//
OneShotTimer
and RepeatingTimer provide a simple timer API. As the names
6
// suggest,
OneShotTimer
calls you back once after a time delay expires.
10
//
OneShotTimer
and RepeatingTimer both cancel the timer when they go out of
12
// object has gone out of scope. Just instantiate a
OneShotTimer
or
35
// Both
OneShotTimer
and RepeatingTimer also support a Reset method, which
239
class BASE_EXPORT
OneShotTimer
: public Timer {
241
OneShotTimer
() :
OneShotTimer
(nullptr) {}
242
explicit
OneShotTimer
(const TickClock* tick_clock)
timer_unittest.cc
87
std::unique_ptr<
OneShotTimer
> timer_ = std::make_unique<
OneShotTimer
>();
348
OneShotTimer
timers[20];
441
OneShotTimer
timer(task_runner->GetMockTickClock());
579
OneShotTimer
timer_;
744
void CreateTimer() { timer_.reset(new
OneShotTimer
); }
780
std::unique_ptr<
OneShotTimer
> timer_;
timer.cc
268
void
OneShotTimer
::FireNow() {
/external/libchrome/base/files/
important_file_writer.h
139
OneShotTimer
timer_;
Completed in 847 milliseconds