HomeSort by relevance Sort by last modified time
    Searched refs:O_PATH (Results 1 - 21 of 21) sorted by null

  /bionic/libc/bionic/
fchmod.cpp 46 // fd could be an O_PATH file descriptor, and the kernel
52 // on an O_PATH file descriptor, and "man open" documents fchmod
53 // on O_PATH file descriptors as returning EBADF.
55 if ((fd_flag == -1) || ((fd_flag & O_PATH) == 0)) {
fchmodat.cpp 50 int fd = openat(dirfd, pathname, O_PATH | O_NOFOLLOW | O_CLOEXEC);
58 // We rely on the O_PATH compatibility layer added in the
fgetxattr.cpp 46 // fd could be an O_PATH file descriptor, and the kernel
50 if ((fd_flag == -1) || ((fd_flag & O_PATH) == 0)) {
fsetxattr.cpp 46 // fd could be an O_PATH file descriptor, and the kernel
50 if ((fd_flag == -1) || ((fd_flag & O_PATH) == 0)) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
fcntl.h 83 #ifndef O_PATH
84 #define O_PATH 010000000
  /bionic/libc/kernel/uapi/asm-generic/
fcntl.h 85 #ifndef O_PATH
86 #define O_PATH 010000000
  /development/ndk/platforms/android-21/include/asm-generic/
fcntl.h 85 #ifndef O_PATH
86 #define O_PATH 010000000
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 83 #ifndef O_PATH
84 #define O_PATH 010000000
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/asm-generic/
fcntl.h 85 #ifndef O_PATH
86 #define O_PATH 010000000
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/asm-generic/
fcntl.h 85 #ifndef O_PATH
86 #define O_PATH 010000000
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/asm-generic/
fcntl.h 85 #ifndef O_PATH
86 #define O_PATH 010000000
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/asm-generic/
fcntl.h 85 #ifndef O_PATH
86 #define O_PATH 010000000
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/asm-generic/
fcntl.h 85 #ifndef O_PATH
86 #define O_PATH 010000000
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/asm-generic/
fcntl.h 85 #ifndef O_PATH
86 #define O_PATH 010000000
  /bionic/tests/
sys_xattr_test.cpp 70 int fd = open(tf.filename, O_PATH);
87 int fd = open(tf.filename, O_PATH);
  /external/strace/xlat/
open_mode_flags.h 60 #if defined(O_PATH) || (defined(HAVE_DECL_O_PATH) && HAVE_DECL_O_PATH)
61 XLAT(O_PATH),
  /external/toybox/lib/
portability.h 232 #ifndef O_PATH
233 #define O_PATH 010000000
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
fcntl.h 56 # define O_PATH 010000000 /* Resolve pathname but do not open file. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 57 # define O_PATH 010000000 /* Resolve pathname but do not open file. */
  /external/toybox/toys/posix/
ls.c 152 int fd = openat(dirtree_parentfd(dt), dt->name, O_PATH|O_NOFOLLOW);
  /external/linux-tools-perf/src/tools/perf/
builtin-trace.c 269 #ifdef O_PATH
    [all...]

Completed in 1068 milliseconds