ats              1421 compat/linux/linux_misc.c 	struct timespec ats;
ats              1431 compat/linux/linux_misc.c 	ats.tv_sec = tt;
ats              1432 compat/linux/linux_misc.c 	ats.tv_nsec = 0;
ats              1434 compat/linux/linux_misc.c 	error = settime(&ats);
ats               168 kern/kern_time.c 	struct timespec ats;
ats               173 kern/kern_time.c 		nanotime(&ats);
ats               176 kern/kern_time.c 		nanouptime(&ats);
ats               179 kern/kern_time.c 		ats.tv_sec = p->p_rtime.tv_sec;
ats               180 kern/kern_time.c 		ats.tv_nsec = p->p_rtime.tv_usec * 1000;
ats               186 kern/kern_time.c 	return copyout(&ats, SCARG(uap, tp), sizeof(ats));
ats               197 kern/kern_time.c 	struct timespec ats;
ats               204 kern/kern_time.c 	if ((error = copyin(SCARG(uap, tp), &ats, sizeof(ats))) != 0)
ats               210 kern/kern_time.c 		if ((error = settime(&ats)) != 0)