HomeSort by relevance Sort by last modified time
    Searched refs:utimes (Results 1 - 25 of 172) sorted by null

1 2 3 4 5 6 7

  /device/linaro/bootloader/edk2/StdLib/Include/
utime.h 63 int utimes (const char *path, const struct timeval *times);
  /bionic/libc/upstream-netbsd/lib/libc/gen/
utime.c 64 return (utimes(path, tvp));
  /device/linaro/bootloader/edk2/StdLib/PosixLib/Gen/
utime.c 72 return (utimes(path, tvp));
  /bionic/tests/
sys_time_test.cpp 28 ASSERT_EQ(0, utimes(tf.filename, nullptr));
37 ASSERT_EQ(-1, utimes(tf.filename, tv));
40 ASSERT_EQ(-1, utimes(tf.filename, tv));
46 ASSERT_EQ(-1, utimes(tf.filename, tv));
49 ASSERT_EQ(-1, utimes(tf.filename, tv));
  /bionic/libc/bionic/
sys_time.cpp 46 int utimes(const char* path, const timeval tv[2]) { function
  /bionic/tests/headers/posix/
sys_time_h.c 73 FUNCTION(utimes, int (*f)(const char*, const struct timeval[2]));
  /external/strace/
utimes.c 37 SYS_FUNC(utimes)
  /external/ltp/testcases/kernel/syscalls/utimes/
utimes01.c 23 * 1) utimes() returns -1 and sets errno to EACCES if times
27 * 2) utimes() returns -1 and sets errno to ENOENT if filename
29 * 3) utimes() returns -1 and sets errno to EFAULT if filename
31 * 4) utimes() returns -1 and sets errno to EPERM if times is
34 * 5) utimes() returns -1 and sets errno to EROFS if path resides
171 TEST(utimes(tc->pathname, tc->times));
174 tst_resm(TPASS | TTERRNO, "utimes() worked as expected");
177 "utimes() failed unexpectedly; expected: %d - %s",
181 if (TEST_ERRNO == 0 && utimes(tc->pathname, tmp_tv) == -1)
182 tst_brkm(TBROK | TERRNO, cleanup, "utimes() failed.")
    [all...]
  /bionic/libc/include/sys/
time.h 47 int utimes(const char* __path, const struct timeval __times[2]);
  /prebuilts/go/darwin-x86/src/os/
file_posix.go 134 // file, similar to the Unix utime() or utimes() functions.
140 var utimes [2]syscall.Timespec
141 utimes[0] = syscall.NsecToTimespec(atime.UnixNano())
142 utimes[1] = syscall.NsecToTimespec(mtime.UnixNano())
143 if e := syscall.UtimesNano(fixLongPath(name), utimes[0:]); e != nil {
  /prebuilts/go/linux-x86/src/os/
file_posix.go 134 // file, similar to the Unix utime() or utimes() functions.
140 var utimes [2]syscall.Timespec
141 utimes[0] = syscall.NsecToTimespec(atime.UnixNano())
142 utimes[1] = syscall.NsecToTimespec(mtime.UnixNano())
143 if e := syscall.UtimesNano(fixLongPath(name), utimes[0:]); e != nil {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
time.h 140 extern int utimes (__const char *__file, __const struct timeval __tvp[2])
144 /* Same as `utimes', but does not follow symbolic links. */
148 /* Same as `utimes', but takes an open file descriptor instead of a name. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
time.h 140 extern int utimes (__const char *__file, __const struct timeval __tvp[2])
144 /* Same as `utimes', but does not follow symbolic links. */
148 /* Same as `utimes', but takes an open file descriptor instead of a name. */
  /toolchain/binutils/binutils-2.27/binutils/
rename.c 116 result = utimes (destination, tv);
  /external/ltp/lib/
safe_file_ops.c 386 ret = utimes(pathname, NULL);
414 ret = utimes(pathname, cotimes);
  /external/strace/linux/aarch64/
syscallent.h 29 [1037] = { 2, TF, SEN(utimes), "utimes" },
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixCopyFile.java 197 utimes(target, method
277 utimes(target, method
355 utimes(target, method
UnixFileAttributeViews.java 100 utimes(file, accessValue, modValue); method
103 // if futimes/utimes fails with EINVAL and one/both of the times is
119 utimes(file, accessValue, modValue); method
  /external/libpcap/lbl/
os-sunos4.h 190 int utimes(const char *, struct timeval *);
  /external/tcpdump/lbl/
os-sunos4.h 190 int utimes(const char *, struct timeval *);
  /system/core/bootstat/
boot_event_record_store_test.cpp 56 if (utimes(record_path.c_str(), times) != 0) {
  /external/compiler-rt/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/sanitizer/
linux_syscall_hooks.h     [all...]

Completed in 601 milliseconds

1 2 3 4 5 6 7