Searched refs:tstimes (Results 1 – 1 of 1) sorted by relevance
188 struct timespec tstimes[2]; in SYSCALL_DEFINE4() local191 if (copy_from_user(&tstimes, utimes, sizeof(tstimes))) in SYSCALL_DEFINE4()195 if (tstimes[0].tv_nsec == UTIME_OMIT && in SYSCALL_DEFINE4()196 tstimes[1].tv_nsec == UTIME_OMIT) in SYSCALL_DEFINE4()200 return do_utimes(dfd, filename, utimes ? tstimes : NULL, flags); in SYSCALL_DEFINE4()207 struct timespec tstimes[2]; in SYSCALL_DEFINE3() local222 tstimes[0].tv_sec = times[0].tv_sec; in SYSCALL_DEFINE3()223 tstimes[0].tv_nsec = 1000 * times[0].tv_usec; in SYSCALL_DEFINE3()224 tstimes[1].tv_sec = times[1].tv_sec; in SYSCALL_DEFINE3()225 tstimes[1].tv_nsec = 1000 * times[1].tv_usec; in SYSCALL_DEFINE3()[all …]