Lines Matching defs:timer
9 #include <linux/timer.h>
15 * @timer is active, that queue's request completion latencies are sorted into
17 * timer fires, @cpu_stat is flushed to @stat and @timer_fn is invoked.
26 * @timer: Timer for the next callback invocation.
28 struct timer_list timer;
131 return timer_pending(&cb->timer);
140 * The timer callback will be called when the window expires.
145 mod_timer(&cb->timer, jiffies + nsecs_to_jiffies(nsecs));
150 del_timer_sync(&cb->timer);
159 * The timer callback will be called when the window expires.
164 mod_timer(&cb->timer, jiffies + msecs_to_jiffies(msecs));