Home | History | Annotate | Download | only in stream_executor

Lines Matching defs:Timer

32 // An interval timer, suitable for use in timing the operations which occur in
36 // the system. Any operation that a user attempts to perform by using a Timer
39 class Timer {
41 // Instantiate a timer tied to parent as a platform executor.
42 explicit Timer(StreamExecutor *parent);
44 // Deallocates any timer resources that the parent StreamExecutor has bestowed
46 ~Timer();
48 // Returns the elapsed number of microseconds for a completed timer.
52 // Returns the elapsed number of nanoseconds for a completed timer.
62 // timer.
65 // Platform-dependent implementation of the timer internals for the underlying
69 SE_DISALLOW_COPY_AND_ASSIGN(Timer);