Lines Matching full:running
5 //! Allows running timer callbacks without doing allocations at the time of
14 //! - Running: executing the callback.
42 //! --------->| Stopped | | Started +---------->| Running |
56 //! **expires**, the timer enters the **running** state and the handler is
59 //! handler. A timer in the **started** or **running** state may be **canceled**
63 //! A `cancel` or `restart` operation on a timer in the **running** state takes
65 //! out of the **running** state.
138 /// Cancel an initialized and potentially running timer.
140 /// If the timer handler is running, this function will block until the
161 // If the handler is running, this will wait for the handler to return in raw_cancel()
182 /// If the timer is running or if the timer callback is executing when the
191 /// already running, it is restarted with the new expiry time.
207 /// A handle representing a running timer.
211 /// If the timer is running, or if the timer callback is executing when the
217 /// running, it is restarted at the new expiry time.
231 /// timer is dead and the timer handler is not running.
288 /// A handle representing a potentially running timer.
295 /// is running. If the timer handler is running when the handle is dropped, the
301 /// Cancel the timer. If the timer is in the running state, block till the
362 /// it is already running it is removed and inserted.