Lines Matching defs:old_value
380 timerfd_curval(struct timerfd *tfd, struct itimerspec *old_value)
385 *old_value = tfd->tfd_time;
389 &old_value->it_value);
509 const struct itimerspec *new_value, struct itimerspec *old_value)
536 if (old_value != NULL)
537 timerfd_curval(tfd, old_value);
592 struct itimerspec new_value, old_value;
598 if (uap->old_value == NULL) {
603 &new_value, &old_value);
605 error = copyout(&old_value, uap->old_value,
606 sizeof(old_value));