Lines Matching refs:t
226 struct old_utimbuf32 __user *, t) in SYSCALL_DEFINE2()
230 if (t) { in SYSCALL_DEFINE2()
231 if (get_user(tv[0].tv_sec, &t->actime) || in SYSCALL_DEFINE2()
232 get_user(tv[1].tv_sec, &t->modtime)) in SYSCALL_DEFINE2()
237 return do_utimes(AT_FDCWD, filename, t ? tv : NULL, 0); in SYSCALL_DEFINE2()
241 …2, unsigned int, dfd, const char __user *, filename, struct old_timespec32 __user *, t, int, flags) in SYSCALL_DEFINE4() argument
245 if (t) { in SYSCALL_DEFINE4()
246 if (get_old_timespec32(&tv[0], &t[0]) || in SYSCALL_DEFINE4()
247 get_old_timespec32(&tv[1], &t[1])) in SYSCALL_DEFINE4()
253 return do_utimes(dfd, filename, t ? tv : NULL, flags); in SYSCALL_DEFINE4()
258 struct old_timeval32 __user *t) in do_compat_futimesat() argument
262 if (t) { in do_compat_futimesat()
263 if (get_user(tv[0].tv_sec, &t[0].tv_sec) || in do_compat_futimesat()
264 get_user(tv[0].tv_nsec, &t[0].tv_usec) || in do_compat_futimesat()
265 get_user(tv[1].tv_sec, &t[1].tv_sec) || in do_compat_futimesat()
266 get_user(tv[1].tv_nsec, &t[1].tv_usec)) in do_compat_futimesat()
274 return do_utimes(dfd, filename, t ? tv : NULL, 0); in do_compat_futimesat()
279 struct old_timeval32 __user *, t) in SYSCALL_DEFINE3()
281 return do_compat_futimesat(dfd, filename, t); in SYSCALL_DEFINE3()
284 SYSCALL_DEFINE2(utimes_time32, const char __user *, filename, struct old_timeval32 __user *, t) in SYSCALL_DEFINE2() argument
286 return do_compat_futimesat(AT_FDCWD, filename, t); in SYSCALL_DEFINE2()