Lines Matching full:its
54 struct itimerspec its; in os_timer_set_interval() local
56 its.it_value.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval()
57 its.it_value.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval()
59 its.it_interval.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval()
60 its.it_interval.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval()
62 if (timer_settime(event_high_res_timer, 0, &its, NULL) == -1) in os_timer_set_interval()
70 struct itimerspec its = { in os_timer_one_shot() local
78 timer_settime(event_high_res_timer, 0, &its, NULL); in os_timer_one_shot()
87 struct itimerspec its; in os_timer_disable() local
89 memset(&its, 0, sizeof(struct itimerspec)); in os_timer_disable()
90 timer_settime(event_high_res_timer, 0, &its, NULL); in os_timer_disable()