| /src/sys/compat/common/ |
| kern_time_50.c | 300 struct itimerval aitv; local 304 error = dogetitimer(p, SCARG(uap, which), &aitv); 307 itimerval_to_itimerval50(&aitv, &aitv50); 325 struct itimerval aitv; local 332 itimerval50_to_itimerval(&aitv50, &aitv); 342 return dosetitimer(p, which, &aitv);
|
| /src/sys/compat/netbsd32/ |
| netbsd32_time.c | 143 struct itimerval aitv; local 150 netbsd32_to_itimerval(&s32it, &aitv); 161 return dosetitimer(p, which, &aitv); 173 struct itimerval aitv; local 176 error = dogetitimer(p, SCARG(uap, which), &aitv); 180 netbsd32_from_itimerval(&aitv, &s32it);
|
| netbsd32_compat_50.c | 839 struct itimerval aitv; local 846 netbsd32_to_itimerval50(&s32it, &aitv); 857 return dosetitimer(p, which, &aitv); 869 struct itimerval aitv; local 872 error = dogetitimer(p, SCARG(uap, which), &aitv); 876 netbsd32_from_itimerval50(&aitv, &s32it);
|
| /src/sys/kern/ |
| kern_time.c | 1564 struct itimerval aitv; local 1567 memset(&aitv, 0, sizeof(aitv)); 1568 error = dogetitimer(p, SCARG(uap, which), &aitv); 1571 return copyout(&aitv, SCARG(uap, itv), sizeof(struct itimerval)); 1617 struct itimerval aitv; local 1622 (error = copyin(itvp, &aitv, sizeof(struct itimerval))) != 0) 1633 return dosetitimer(p, which, &aitv);
|