Lines Matching defs:olddelta
592 syscallarg(struct timeval *) olddelta;
608 SCARG(uap, olddelta) ? &oldatv : NULL, l->l_proc);
609 if (SCARG(uap, olddelta))
610 error = copyout(&oldatv, SCARG(uap, olddelta),
611 sizeof(*SCARG(uap, olddelta)));
616 adjtime1(const struct timeval *delta, struct timeval *olddelta, struct proc *p)
619 if (olddelta) {
620 memset(olddelta, 0, sizeof(*olddelta));
622 olddelta->tv_sec = time_adjtime / 1000000;
623 olddelta->tv_usec = time_adjtime % 1000000;
624 if (olddelta->tv_usec < 0) {
625 olddelta->tv_usec += 1000000;
626 olddelta->tv_sec--;