Lines Matching full:its
63 struct itimerspec its; in os_timer_set_interval() local
65 its.it_value.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval()
66 its.it_value.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval()
68 its.it_interval.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval()
69 its.it_interval.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval()
71 if (timer_settime(event_high_res_timer[cpu], 0, &its, NULL) == -1) in os_timer_set_interval()
79 struct itimerspec its = { in os_timer_one_shot() local
87 timer_settime(event_high_res_timer[cpu], 0, &its, NULL); in os_timer_one_shot()
97 struct itimerspec its; in os_timer_disable() local
99 memset(&its, 0, sizeof(struct itimerspec)); in os_timer_disable()
100 timer_settime(event_high_res_timer[cpu], 0, &its, NULL); in os_timer_disable()