Home
last modified time | relevance | path

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

/bionic/tests/
Dsys_xattr_test.cpp70 int fd = open(tf.path, O_PATH); in TEST()
88 int fd = open(tf.path, O_PATH); in TEST()
117 int fd = open(tf.path, O_PATH); in TEST()
Dstdlib_test.cpp387 android::base::unique_fd fd(open(A_path.c_str(), O_PATH)); in TEST()
Dstdio_test.cpp2682 android::base::unique_fd dirfd{open(td.path, O_PATH)}; in TEST()
2703 android::base::unique_fd dirfd{open(td.path, O_PATH)}; in TEST()
/bionic/libc/kernel/uapi/asm-generic/
Dfcntl.h74 #ifndef O_PATH
75 #define O_PATH 010000000 macro
/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()