Home
last modified time | relevance | path

Searched refs:O_PATH (Results 1 – 11 of 11) sorted by relevance

/bionic/libc/kernel/uapi/asm-generic/
Dfcntl.h62 #ifndef O_PATH
63 #define O_PATH 010000000 macro
/bionic/tests/
Dsys_xattr_test.cpp72 int fd = open(tf.path, O_PATH); in TEST()
90 int fd = open(tf.path, O_PATH); in TEST()
119 int fd = open(tf.path, O_PATH); in TEST()
Dspawn_test.cpp251 ASSERT_EQ(0, posix_spawn_file_actions_addopen(&fa, 57, "/proc", O_PATH, 0)); in TEST()
Dstdlib_test.cpp389 android::base::unique_fd fd(open(A_path.c_str(), O_PATH)); in TEST()
Dstdio_test.cpp2811 android::base::unique_fd dirfd{open(td.path, O_PATH)}; in TEST()
2832 android::base::unique_fd dirfd{open(td.path, O_PATH)}; in TEST()
/bionic/libc/bionic/
Dfchmodat.cpp50 ScopedFd fd(openat(dirfd, pathname, O_PATH | O_NOFOLLOW | O_CLOEXEC)); in fchmodat()
Dflistxattr.cpp51 if (fd_flag == -1 || (fd_flag & O_PATH) == 0) { in flistxattr()
Dfchmod.cpp56 if (fd_flag == -1 || (fd_flag & O_PATH) == 0) { in fchmod()
Dfsetxattr.cpp51 if (fd_flag == -1 || (fd_flag & O_PATH) == 0) { in fsetxattr()
Dfgetxattr.cpp52 if (fd_flag == -1 || (fd_flag & O_PATH) == 0) { in fgetxattr()
Drealpath.cpp54 ScopedFd fd(open(path, O_PATH | O_CLOEXEC)); in realpath()