/external/ltp/testcases/kernel/syscalls/utimes/ |
D | utimes01.c | 94 TEST(utimes(tc->pathname, tc->times)); in utimes_verify() 104 if (TST_ERR == 0 && utimes(tc->pathname, tmp_tv) == -1) in utimes_verify()
|
/external/syzkaller/vendor/golang.org/x/sys/unix/ |
D | syscall_bsd.go | 525 return utimes(path, nil) 530 return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0]))) 539 return utimes(path, nil) 559 return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
|
D | syscall_linux_arm64.go | 134 func utimes(path string, tv *[2]Timeval) (err error) { func
|
D | syscall_linux.go | 157 return utimes(path, nil) 169 return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0]))) 180 return utimes(path, nil) 195 return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
|
D | syscall_solaris.go | 283 return utimes(path, nil) 288 return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
|
/external/strace/ |
D | utimes.c | 37 SYS_FUNC(utimes) in SYS_FUNC() argument
|
/external/ltp/lib/ |
D | safe_file_ops.c | 386 ret = utimes(pathname, NULL); in safe_touch() 414 ret = utimes(pathname, cotimes); in safe_touch()
|
/external/openssh/openbsd-compat/ |
D | bsd-misc.h | 64 int utimes(char *, struct timeval *);
|
D | bsd-misc.c | 108 int utimes(char *filename, struct timeval *tvp) in utimes() function
|
/external/curl/src/ |
D | tool_filetime.c | 135 if(utimes(filename, times)) { in setfiletime()
|
/external/strace/linux/aarch64/ |
D | syscallent.h | 31 [1037] = { 2, TF, SEN(utimes), "utimes" },
|
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 934 #define __sanitizer_syscall_pre_utimes(filename, utimes) \ argument 935 __sanitizer_syscall_pre_impl_utimes((long)(filename), (long)(utimes)) 936 #define __sanitizer_syscall_post_utimes(res, filename, utimes) \ argument 937 __sanitizer_syscall_post_impl_utimes(res, (long)(filename), (long)(utimes)) 1607 #define __sanitizer_syscall_pre_futimesat(dfd, filename, utimes) \ argument 1609 (long)(utimes)) 1610 #define __sanitizer_syscall_post_futimesat(res, dfd, filename, utimes) \ argument 1612 (long)(utimes)) 1658 #define __sanitizer_syscall_pre_utimensat(dfd, filename, utimes, flags) \ argument 1660 (long)(utimes), (long)(flags)) [all …]
|
/external/libpcap/lbl/ |
D | os-sunos4.h | 190 int utimes(const char *, struct timeval *);
|
/external/tcpdump/lbl/ |
D | os-sunos4.h | 190 int utimes(const char *, struct timeval *);
|
/external/ltp/include/lapi/syscalls/ |
D | ia64.in | 13 utimes 1036
|
D | sparc64.in | 122 utimes 138
|
D | x86_64.in | 234 utimes 235
|
D | i386.in | 266 utimes 271
|
D | s390.in | 229 utimes 313
|
D | powerpc.in | 247 utimes 251
|
D | s390x.in | 229 utimes 313
|
D | powerpc64.in | 247 utimes 251
|
D | sparc.in | 143 utimes 138
|
D | sh.in | 293 utimes 299
|
/external/ltp/testcases/kernel/syscalls/symlink/ |
D | symlink01.c | 1665 struct utimbuf utimes; in do_utime() local 1673 utimes.actime = asymlink.st_atime + a_time_value; in do_utime() 1674 utimes.modtime = asymlink.st_mtime + a_time_value; in do_utime() 1678 if (utime(tc_ptr->fn_arg[1], &utimes) == -1) in do_utime()
|