Lines Matching refs:tstimes
150 struct timespec64 tstimes[2]; in SYSCALL_DEFINE4() local
153 if ((get_timespec64(&tstimes[0], &utimes[0]) || in SYSCALL_DEFINE4()
154 get_timespec64(&tstimes[1], &utimes[1]))) in SYSCALL_DEFINE4()
158 if (tstimes[0].tv_nsec == UTIME_OMIT && in SYSCALL_DEFINE4()
159 tstimes[1].tv_nsec == UTIME_OMIT) in SYSCALL_DEFINE4()
163 return do_utimes(dfd, filename, utimes ? tstimes : NULL, flags); in SYSCALL_DEFINE4()
177 struct timespec64 tstimes[2]; in do_futimesat() local
192 tstimes[0].tv_sec = times[0].tv_sec; in do_futimesat()
193 tstimes[0].tv_nsec = 1000 * times[0].tv_usec; in do_futimesat()
194 tstimes[1].tv_sec = times[1].tv_sec; in do_futimesat()
195 tstimes[1].tv_nsec = 1000 * times[1].tv_usec; in do_futimesat()
198 return do_utimes(dfd, filename, utimes ? tstimes : NULL, 0); in do_futimesat()