Home
last modified time | relevance | path

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

/fs/
Dutimes.c147 struct __kernel_timespec __user *, utimes, int, flags) in SYSCALL_DEFINE4() argument
151 if (utimes) { in SYSCALL_DEFINE4()
152 if ((get_timespec64(&tstimes[0], &utimes[0]) || in SYSCALL_DEFINE4()
153 get_timespec64(&tstimes[1], &utimes[1]))) in SYSCALL_DEFINE4()
162 return do_utimes(dfd, filename, utimes ? tstimes : NULL, flags); in SYSCALL_DEFINE4()
173 struct __kernel_old_timeval __user *utimes) in do_futimesat() argument
178 if (utimes) { in do_futimesat()
179 if (copy_from_user(&times, utimes, sizeof(times))) in do_futimesat()
197 return do_utimes(dfd, filename, utimes ? tstimes : NULL, 0); in do_futimesat()
202 struct __kernel_old_timeval __user *, utimes) in SYSCALL_DEFINE3()
[all …]
DMakefile16 pnode.o splice.o sync.o utimes.o d_path.o \
/fs/hostfs/
Dhostfs_user.c261 } else if (utimes(file, times) != 0) { in set_attr()