aitv 546 kern/kern_time.c struct itimerval aitv;
aitv 562 kern/kern_time.c aitv = p->p_realtimer;
aitv 563 kern/kern_time.c if (timerisset(&aitv.it_value)) {
aitv 564 kern/kern_time.c if (timercmp(&aitv.it_value, &now, <))
aitv 565 kern/kern_time.c timerclear(&aitv.it_value);
aitv 567 kern/kern_time.c timersub(&aitv.it_value, &now,
aitv 568 kern/kern_time.c &aitv.it_value);
aitv 571 kern/kern_time.c aitv = p->p_stats->p_timer[SCARG(uap, which)];
aitv 573 kern/kern_time.c return (copyout((void *)&aitv, (void *)SCARG(uap, itv),
aitv 587 kern/kern_time.c struct itimerval aitv;
aitv 595 kern/kern_time.c if (itvp && (error = copyin((void *)itvp, (void *)&aitv,
aitv 606 kern/kern_time.c if (itimerfix(&aitv.it_value) || itimerfix(&aitv.it_interval))
aitv 613 kern/kern_time.c if (timerisset(&aitv.it_value)) {
aitv 614 kern/kern_time.c timo = tvtohz(&aitv.it_value);
aitv 616 kern/kern_time.c timeradd(&aitv.it_value, &ctv, &aitv.it_value);
aitv 618 kern/kern_time.c p->p_realtimer = aitv;
aitv 622 kern/kern_time.c itimerround(&aitv.it_interval);
aitv 624 kern/kern_time.c p->p_stats->p_timer[SCARG(uap, which)] = aitv;