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

1 2 3

  /bionic/libc/bionic/
access.cpp 33 return faccessat(AT_FDCWD, path, mode, 0);
faccessat.cpp 35 int faccessat(int dirfd, const char* pathname, int mode, int flags) { function
  /external/strace/
access.c 22 SYS_FUNC(faccessat)
sys_func.h 38 extern SYS_FUNC(faccessat);
  /bionic/tests/
sys_stat_test.cpp 249 ASSERT_EQ(-1, faccessat(AT_FDCWD, "/dev/null", F_OK, ~AT_SYMLINK_NOFOLLOW));
252 ASSERT_EQ(-1, faccessat(AT_FDCWD, "/dev/null", ~(R_OK | W_OK | X_OK), 0));
255 ASSERT_EQ(0, faccessat(AT_FDCWD, "/dev/null", ~(R_OK | W_OK | X_OK), AT_SYMLINK_NOFOLLOW));
256 ASSERT_EQ(-1, faccessat(AT_FDCWD, "/dev/null", ~(R_OK | W_OK | X_OK), 0));
264 ASSERT_EQ(-1, faccessat(AT_FDCWD, "/dev/null", F_OK, AT_SYMLINK_NOFOLLOW));
267 ASSERT_EQ(0, faccessat(AT_FDCWD, "/dev/null", F_OK, AT_SYMLINK_NOFOLLOW));
272 ASSERT_EQ(0, faccessat(AT_FDCWD, "/dev/null", F_OK, 0));
273 ASSERT_EQ(0, faccessat(AT_FDCWD, "/dev/null", R_OK, 0));
274 ASSERT_EQ(0, faccessat(AT_FDCWD, "/dev/null", W_OK, 0));
275 ASSERT_EQ(0, faccessat(AT_FDCWD, "/dev/null", R_OK|W_OK, 0))
    [all...]
  /external/toybox/toys/posix/
rm.c 40 && (!S_ISLNK(try->st.st_mode) && faccessat(fd, try->name, W_OK, 0))) or++;
54 if (faccessat(fd, try->name, R_OK, 0)) {
cp.c 160 if (!faccessat(cfd, catch, F_OK, 0) && !S_ISDIR(cst.st_mode)) {
  /bionic/libc/include/
unistd.h 207 int faccessat(int __dirfd, const char* __path, int __mode, int __flags) __INTRODUCED_IN(16);
  /bionic/tests/headers/posix/
unistd_h.c 309 FUNCTION(faccessat, int (*f)(int, const char*, int, int));
  /external/strace/linux/32/
syscallent.h 52 [ 48] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/64/
syscallent.h 49 [ 48] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/avr32/
syscallent.h 284 [255] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/hppa/
syscallent.h 293 [287] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/ia64/
syscallent.h 299 [1293] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/x86_64/
syscallent.h 270 [269] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/xtensa/
syscallent.h 293 [301] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/arm/
syscallent.h 362 [334] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/i386/
syscallent.h 336 [307] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/m68k/
syscallent.h 329 [300] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/mips/
syscallent-n32.h 266 [6263] = { 3, TD|TF, SEN(faccessat), "faccessat" },
syscallent-n64.h 262 [5259] = { 3, TD|TF, SEN(faccessat), "faccessat" },
syscallent-o32.h 304 [4300] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/powerpc/
syscallent.h 328 [298] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/powerpc64/
syscallent.h 323 [298] = { 3, TD|TF, SEN(faccessat), "faccessat" },
  /external/strace/linux/s390/
syscallent.h 332 [300] = { 3, TD|TF, SEN(faccessat), "faccessat" },

Completed in 5177 milliseconds

1 2 3