HomeSort by: relevance | last modified time | path
    Searched defs:oits (Results 1 - 5 of 5) sorted by relevancy

  /src/tests/lib/libc/sys/
t_timerfd.c 307 struct itimerspec oits; local in function:ATF_TC_BODY
315 ATF_REQUIRE(timerfd_settime(fd, 0, &its, &oits) == 0);
316 ATF_CHECK_MSG(timespeccmp(&oits.it_value, &its.it_value, <=),
319 (intmax_t)oits.it_value.tv_sec, oits.it_value.tv_nsec,
389 struct itimerspec oits, its = { local in function:ATF_TC_BODY
398 ATF_REQUIRE(timerfd_settime(fd, TFD_TIMER_ABSTIME, &its, &oits) == 0);
401 ATF_CHECK_MSG(timespeccmp(&oits.it_value, &delta, <=),
404 (intmax_t)oits.it_value.tv_sec, oits.it_value.tv_nsec
    [all...]
  /src/sys/compat/linux/common/
linux_time.c 535 struct itimerspec nits, oits, *oitsp = NULL; local in function:linux_sys_timerfd_settime
553 oitsp = &oits;
  /src/sys/compat/linux32/common/
linux32_time.c 538 struct itimerspec nits, oits, *oitsp = NULL; local in function:linux32_sys_timerfd_settime
556 oitsp = &oits;
  /src/sys/compat/netbsd32/
netbsd32_time.c 549 struct itimerspec its, oits, *oitsp = NULL; local in function:netbsd32_timerfd_settime
561 oitsp = &oits;
  /src/sys/kern/
sys_timerfd.c 578 struct itimerspec oits; local in function:sys_timerfd_gettime
581 error = do_timerfd_gettime(l, SCARG(uap, fd), &oits, retval);
583 error = copyout(&oits, SCARG(uap, curr_value), sizeof(oits));
679 struct itimerspec nits, oits, *oitsp = NULL; local in function:sys_timerfd_settime
688 oitsp = &oits;

Completed in 37 milliseconds