Lines Matching defs:timer
27 struct hrtimer timer;
98 static enum hrtimer_restart iio_hrtimer_trig_handler(struct hrtimer *timer)
102 info = container_of(timer, struct iio_hrtimer_info, timer);
104 hrtimer_forward_now(timer, info->period);
117 hrtimer_start(&trig_info->timer, trig_info->period,
120 hrtimer_cancel(&trig_info->timer);
148 hrtimer_init(&trig_info->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
149 trig_info->timer.function = iio_hrtimer_trig_handler;
176 /* cancel the timer after unreg to make sure no one rearms it */
177 hrtimer_cancel(&trig_info->timer);