Lines Matching refs:tv
840 SYSCALL_DEFINE2(osf_gettimeofday, struct timeval32 __user *, tv, in SYSCALL_DEFINE2() argument
843 if (tv) { in SYSCALL_DEFINE2()
846 if (put_tv32(tv, &ktv)) in SYSCALL_DEFINE2()
856 SYSCALL_DEFINE2(osf_settimeofday, struct timeval32 __user *, tv, in SYSCALL_DEFINE2() argument
862 if (tv) { in SYSCALL_DEFINE2()
863 if (get_tv32((struct timeval *)&kts, tv)) in SYSCALL_DEFINE2()
873 return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL); in SYSCALL_DEFINE2()
914 struct timespec tv[2]; in SYSCALL_DEFINE2() local
926 tv[0].tv_sec = ktvs[0].tv_sec; in SYSCALL_DEFINE2()
927 tv[0].tv_nsec = 1000 * ktvs[0].tv_usec; in SYSCALL_DEFINE2()
928 tv[1].tv_sec = ktvs[1].tv_sec; in SYSCALL_DEFINE2()
929 tv[1].tv_nsec = 1000 * ktvs[1].tv_usec; in SYSCALL_DEFINE2()
932 return do_utimes(AT_FDCWD, filename, tvs ? tv : NULL, 0); in SYSCALL_DEFINE2()