Lines Matching defs:timer
24 struct hrtimer timer;
85 static enum hrtimer_restart iio_hrtimer_trig_handler(struct hrtimer *timer)
89 info = container_of(timer, struct iio_hrtimer_info, timer);
91 hrtimer_forward_now(timer, info->period);
104 hrtimer_start(&trig_info->timer, trig_info->period,
107 hrtimer_cancel(&trig_info->timer);
135 hrtimer_init(&trig_info->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
136 trig_info->timer.function = iio_hrtimer_trig_handler;
163 /* cancel the timer after unreg to make sure no one rearms it */
164 hrtimer_cancel(&trig_info->timer);