Searched refs:tstimes (Results 1 - 2 of 2) sorted by relevance
/kernel/linux/linux-5.10/fs/ |
H A D | utimes.c | 149 struct timespec64 tstimes[2]; in SYSCALL_DEFINE4() local 152 if ((get_timespec64(&tstimes[0], &utimes[0]) || in SYSCALL_DEFINE4() 153 get_timespec64(&tstimes[1], &utimes[1]))) in SYSCALL_DEFINE4() 157 if (tstimes[0].tv_nsec == UTIME_OMIT && in SYSCALL_DEFINE4() 158 tstimes[1].tv_nsec == UTIME_OMIT) in SYSCALL_DEFINE4() 162 return do_utimes(dfd, filename, utimes ? tstimes : NULL, flags); in SYSCALL_DEFINE4() 176 struct timespec64 tstimes[2]; in do_futimesat() local 191 tstimes[0].tv_sec = times[0].tv_sec; in do_futimesat() 192 tstimes[0].tv_nsec = 1000 * times[0].tv_usec; in do_futimesat() 193 tstimes[ in do_futimesat() [all...] |
/kernel/linux/linux-6.6/fs/ |
H A D | utimes.c | 151 struct timespec64 tstimes[2]; in SYSCALL_DEFINE4() local 154 if ((get_timespec64(&tstimes[0], &utimes[0]) || in SYSCALL_DEFINE4() 155 get_timespec64(&tstimes[1], &utimes[1]))) in SYSCALL_DEFINE4() 159 if (tstimes[0].tv_nsec == UTIME_OMIT && in SYSCALL_DEFINE4() 160 tstimes[1].tv_nsec == UTIME_OMIT) in SYSCALL_DEFINE4() 164 return do_utimes(dfd, filename, utimes ? tstimes : NULL, flags); in SYSCALL_DEFINE4() 178 struct timespec64 tstimes[2]; in do_futimesat() local 193 tstimes[0].tv_sec = times[0].tv_sec; in do_futimesat() 194 tstimes[0].tv_nsec = 1000 * times[0].tv_usec; in do_futimesat() 195 tstimes[ in do_futimesat() [all...] |
Completed in 2 milliseconds