Lines Matching defs:clock_id
157 timerfd_create(clockid_t const clock_id, int const flags)
161 KASSERT(clock_id == CLOCK_REALTIME || clock_id == CLOCK_MONOTONIC);
171 clock_id == CLOCK_REALTIME ? &timerfd_itimer_realtime_ops
173 clock_id, NULL);
491 do_timerfd_create(struct lwp * const l, clockid_t const clock_id,
501 switch (clock_id) {
521 fp->f_timerfd = timerfd_create(clock_id, flags);
534 syscallarg(clockid_t) clock_id;
538 return do_timerfd_create(l, SCARG(uap, clock_id), SCARG(uap, flags),