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

1 2 3 4 5 6 7

  /bionic/libc/kernel/uapi/asm-arm/asm/
fcntl.h 22 #define O_NOFOLLOW 0100000
  /bionic/libc/kernel/uapi/asm-arm64/asm/
fcntl.h 22 #define O_NOFOLLOW 0100000
  /external/kernel-headers/original/uapi/asm-arm/asm/
fcntl.h 6 #define O_NOFOLLOW 0100000 /* don't follow links */
  /external/kernel-headers/original/uapi/asm-arm64/asm/
fcntl.h 24 #define O_NOFOLLOW 0100000 /* don't follow links */
  /bionic/libc/bionic/
fchmodat.cpp 50 int fd = openat(dirfd, pathname, O_PATH | O_NOFOLLOW | O_CLOEXEC);
getentropy.cpp 35 int fd = TEMP_FAILURE_RETRY(open("/dev/urandom", O_RDONLY | O_NOFOLLOW | O_CLOEXEC, 0));
  /external/libcups/cups/
tempfile.c 121 #elif defined(O_NOFOLLOW)
122 fd = open(filename, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW, 0600);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
fcntl.h 55 #ifndef O_NOFOLLOW
56 #define O_NOFOLLOW 00400000 /* don't follow links */
  /external/ltp/testcases/kernel/syscalls/open/
open07.c 31 * 1. Create a symbolic link to a file, and call open(O_NOFOLLOW). Check
34 * 2. Create a symbolic link to a directory, and call open(O_NOFOLLOW).
37 * 3. Create a symbolic link to a symbolic link, and call open(O_NOFOLLOW).
41 * open(O_NOFOLLOW). Check that it returns ELOOP.
44 * open("link/", O_NOFOLLOW). Check that it succeeds.
61 #define _GNU_SOURCE /* for O_NOFOLLOW */
92 O_NOFOLLOW, 00700, setupfunc_test1, ELOOP},
94 O_NOFOLLOW, 00700, setupfunc_test2, ELOOP},
96 O_NOFOLLOW, 00700, setupfunc_test3, ELOOP},
98 O_NOFOLLOW, 00700, setupfunc_test4, ELOOP}
    [all...]
  /system/core/libutils/include/utils/
Compat.h 48 #define O_NOFOLLOW 0
  /bionic/libc/kernel/uapi/asm-generic/
fcntl.h 59 #ifndef O_NOFOLLOW
60 #define O_NOFOLLOW 00400000
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 56 #ifndef O_NOFOLLOW
57 #define O_NOFOLLOW 00400000 /* don't follow links */
  /external/libbrillo/brillo/
file_utils.cc 60 // Check for symlinks by setting O_NOFOLLOW and checking for ELOOP. This lets
63 AT_FDCWD, path.value().c_str(), O_RDONLY | O_CLOEXEC | O_NOFOLLOW)));
118 O_RDONLY | O_NOFOLLOW | O_CREAT | O_EXCL | O_CLOEXEC,
  /external/strace/xlat/
open_mode_flags.h 56 #if defined(O_NOFOLLOW) || (defined(HAVE_DECL_O_NOFOLLOW) && HAVE_DECL_O_NOFOLLOW)
57 XLAT(O_NOFOLLOW),
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 64 static final int O_NOFOLLOW = OsConstants.O_NOFOLLOW;
UnixChannelFactory.java 87 if (option == LinkOption.NOFOLLOW_LINKS && O_NOFOLLOW != 0) {
221 if (flags.deleteOnClose && O_NOFOLLOW == 0) {
231 oflags |= O_NOFOLLOW;
  /system/core/init/
security.cpp 48 TEMP_FAILURE_RETRY(open("/dev/hw_random", O_RDONLY | O_NOFOLLOW | O_CLOEXEC)));
59 TEMP_FAILURE_RETRY(open("/dev/urandom", O_WRONLY | O_NOFOLLOW | O_CLOEXEC)));
  /art/libartbase/base/
os_linux.cc 53 return art::CreateEmptyFile(name, O_WRONLY | O_TRUNC | O_NOFOLLOW | O_CLOEXEC);
  /device/google/cuttlefish_common/guest/commands/vport_trigger/
main.cpp 46 int flags = O_RDONLY | O_CLOEXEC | (follow_symlinks ? 0 : O_NOFOLLOW);
  /external/toybox/lib/
portability.h 201 // Some systems don't define O_NOFOLLOW, and it varies by architecture, so...
203 #ifndef O_NOFOLLOW
204 #define O_NOFOLLOW 0
  /bionic/tests/headers/posix/
fcntl_h.c 61 MACRO(O_NOFOLLOW);
  /external/strace/tests/
openat.c 92 { ARG_STR(O_NOFOLLOW) },
  /external/strace/tests-m32/
openat.c 92 { ARG_STR(O_NOFOLLOW) },
  /external/strace/tests-mx32/
openat.c 92 { ARG_STR(O_NOFOLLOW) },
  /system/core/base/
file.cpp 42 #define O_NOFOLLOW 0
73 int flags = O_RDONLY | O_CLOEXEC | O_BINARY | (follow_symlinks ? 0 : O_NOFOLLOW);
108 (follow_symlinks ? 0 : O_NOFOLLOW);
136 (follow_symlinks ? 0 : O_NOFOLLOW);

Completed in 225 milliseconds

1 2 3 4 5 6 7