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

1 2 3

  /bionic/libc/bionic/
sys_time.cpp 37 static int futimesat(int fd, const char* path, const timeval tv[2], int flags) { function
47 return futimesat(AT_FDCWD, path, tv, 0);
51 return futimesat(AT_FDCWD, path, tv, AT_SYMLINK_NOFOLLOW);
54 int futimesat(int fd, const char* path, const timeval tv[2]) { function
55 return futimesat(fd, path, tv, 0);
  /bionic/tests/
sys_time_test.cpp 82 ASSERT_EQ(0, futimesat(AT_FDCWD, tf.filename, nullptr));
91 ASSERT_EQ(-1, futimesat(AT_FDCWD, tf.filename, tv));
94 ASSERT_EQ(-1, futimesat(AT_FDCWD, tf.filename, tv));
100 ASSERT_EQ(-1, futimesat(AT_FDCWD, tf.filename, tv));
103 ASSERT_EQ(-1, futimesat(AT_FDCWD, tf.filename, tv));
  /external/strace/
utimes.c 46 SYS_FUNC(futimesat)
sys_func.h 65 extern SYS_FUNC(futimesat);
  /bionic/libc/include/sys/
time.h 55 int futimesat(int __dir_fd, const char* __path, const struct timeval __times[2]) __INTRODUCED_IN(26);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
time.h 156 extern int futimesat (int __fd, __const char *__file,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
time.h 156 extern int futimesat (int __fd, __const char *__file,
  /external/strace/linux/aarch64/
syscallent.h 58 [1066] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/avr32/
syscallent.h 276 [247] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/hppa/
syscallent.h 285 [279] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/x86_64/
syscallent.h 262 [261] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/xtensa/
syscallent.h 290 [298] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/arm/
syscallent.h 354 [326] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/i386/
syscallent.h 328 [299] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/ia64/
syscallent.h 306 [1285] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/m68k/
syscallent.h 321 [292] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/mips/
syscallent-n32.h 258 [6255] = { 3, TD|TF, SEN(futimesat), "futimesat" },
syscallent-n64.h 254 [5251] = { 3, TD|TF, SEN(futimesat), "futimesat" },
syscallent-o32.h 296 [4292] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/powerpc/
syscallent.h 320 [290] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/powerpc64/
syscallent.h 315 [290] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/s390/
syscallent.h 324 [292] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/s390x/
syscallent.h 308 [292] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/sh/
syscallent.h 328 [299] = { 3, TD|TF, SEN(futimesat), "futimesat" },
  /external/strace/linux/sh64/
syscallent.h 354 [327] = { 3, TD|TF, SEN(futimesat), "futimesat" },

Completed in 604 milliseconds

1 2 3