HomeSort by relevance Sort by last modified time
    Searched full:futimes (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /bionic/tests/
sys_time_test.cpp 55 ASSERT_EQ(0, futimes(tf.fd, nullptr));
64 ASSERT_EQ(-1, futimes(tf.fd, tv));
67 ASSERT_EQ(-1, futimes(tf.fd, tv));
73 ASSERT_EQ(-1, futimes(tf.fd, tv));
76 ASSERT_EQ(-1, futimes(tf.fd, tv));
  /external/libchrome/base/
os_compat_android.h 13 extern "C" int futimes(int fd, const struct timeval tv[2]);
os_compat_android.cc 23 // There is no futimes() avaiable in Bionic, so we provide our own
25 int futimes(int fd, const struct timeval tv[2]) { function
  /external/valgrind/
darwin9.supp 110 macos-futimes-1
112 futimes(tvp[1])
113 fun:futimes
  /bionic/libc/bionic/
sys_time.cpp 58 int futimes(int fd, const timeval tv[2]) { function
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileAttributeViews.java 98 futimes(fd, accessValue, modValue); method
103 // if futimes/utimes fails with EINVAL and one/both of the times is
117 futimes(fd, accessValue, modValue); method
UnixNativeDispatcher.java 398 * futimes(int fildes,, const struct timeval times[2])
400 static native void futimes(int fd, long times0, long times1) throws UnixException; method in class:UnixNativeDispatcher
556 * Supports futimes or futimesat
UnixCopyFile.java 193 futimes(dfd, method
273 futimes(fo, method
  /bionic/libc/include/sys/
time.h 50 int futimes(int, const struct timeval[2]) __INTRODUCED_IN(26);
  /external/libchrome/base/files/
file_posix.cc 58 // futimens should be available, but futimes might not be
69 return futimes(file, times);
98 NOTIMPLEMENTED(); // NaCl doesn't implement futimes.
  /external/e2fsprogs/util/
subst.c 306 if (futimes(fd, times) < 0)
307 perror("futimes");
  /libcore/ojluni/src/main/native/
sun_nio_fs_UnixNativeDispatcher.h 243 * Method: futimes
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
time.h 149 extern int futimes (int __fd, __const struct timeval __tvp[2]) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
time.h 149 extern int futimes (int __fd, __const struct timeval __tvp[2]) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
time.h 149 extern int futimes (int __fd, __const struct timeval __tvp[2]) __THROW;
  /prebuilts/go/darwin-x86/src/syscall/
syscall_bsd.go 524 //sys futimes(fd int, timeval *[2]Timeval) (err error)
526 func Futimes(fd int, tv []Timeval) (err error) {
530 return futimes(fd, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
  /prebuilts/go/linux-x86/src/syscall/
syscall_bsd.go 524 //sys futimes(fd int, timeval *[2]Timeval) (err error)
526 func Futimes(fd int, tv []Timeval) (err error) {
530 return futimes(fd, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
  /external/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/Config/
config.h 78 /* Define to 1 if you have the `futimes' function. */
  /external/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/Config/
config.h 78 /* Define to 1 if you have the `futimes' function. */
  /external/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/Config/
config.h 78 /* Define to 1 if you have the `futimes' function. */
  /external/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/Config/
config.h 78 /* Define to 1 if you have the `futimes' function. */
  /external/llvm/lib/Support/Unix/
Path.inc 453 if (::futimes(FD, Times))
457 #warning Missing futimes() and futimens()
  /external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
Path.inc 469 if (::futimes(FD, Times))
473 #warning Missing futimes() and futimens()
  /external/llvm/cmake/
config-ix.cmake 164 check_symbol_exists(futimes sys/time.h HAVE_FUTIMES)
  /external/llvm/include/llvm/Config/
config.h.cmake 87 /* Define to 1 if you have the `futimes' function. */

Completed in 3000 milliseconds

1 2 3 4 5 6