Home
last modified time | relevance | path

Searched refs:tstimes (Results 1 – 1 of 1) sorted by relevance

/linux-6.15/fs/
H A Dutimes.c146 struct timespec64 tstimes[2]; in SYSCALL_DEFINE4() local
149 if ((get_timespec64(&tstimes[0], &utimes[0]) || in SYSCALL_DEFINE4()
150 get_timespec64(&tstimes[1], &utimes[1]))) in SYSCALL_DEFINE4()
154 if (tstimes[0].tv_nsec == UTIME_OMIT && in SYSCALL_DEFINE4()
155 tstimes[1].tv_nsec == UTIME_OMIT) in SYSCALL_DEFINE4()
173 struct timespec64 tstimes[2]; in do_futimesat() local
188 tstimes[0].tv_sec = times[0].tv_sec; in do_futimesat()
189 tstimes[0].tv_nsec = 1000 * times[0].tv_usec; in do_futimesat()
190 tstimes[1].tv_sec = times[1].tv_sec; in do_futimesat()
191 tstimes[1].tv_nsec = 1000 * times[1].tv_usec; in do_futimesat()
[all …]