Lines Matching refs:tv
997 SYSCALL_DEFINE2(osf_gettimeofday, struct timeval32 __user *, tv, in SYSCALL_DEFINE2() argument
1000 if (tv) { in SYSCALL_DEFINE2()
1003 if (put_tv32(tv, &ktv)) in SYSCALL_DEFINE2()
1013 SYSCALL_DEFINE2(osf_settimeofday, struct timeval32 __user *, tv, in SYSCALL_DEFINE2() argument
1019 if (tv) { in SYSCALL_DEFINE2()
1020 if (get_tv32((struct timeval *)&kts, tv)) in SYSCALL_DEFINE2()
1029 return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL); in SYSCALL_DEFINE2()
1070 struct timespec tv[2]; in SYSCALL_DEFINE2() local
1082 tv[0].tv_sec = ktvs[0].tv_sec; in SYSCALL_DEFINE2()
1083 tv[0].tv_nsec = 1000 * ktvs[0].tv_usec; in SYSCALL_DEFINE2()
1084 tv[1].tv_sec = ktvs[1].tv_sec; in SYSCALL_DEFINE2()
1085 tv[1].tv_nsec = 1000 * ktvs[1].tv_usec; in SYSCALL_DEFINE2()
1088 return do_utimes(AT_FDCWD, filename, tvs ? tv : NULL, 0); in SYSCALL_DEFINE2()