HomeSort by relevance Sort by last modified time
    Searched defs:O_CLOEXEC (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/src/runtime/
defs1_linux.go 24 O_CLOEXEC = C.O_CLOEXEC
defs3_linux.go 26 O_CLOEXEC = C.O_CLOEXEC
defs2_linux.go 120 O_CLOEXEC = C.O_CLOEXEC
  /prebuilts/go/linux-x86/src/runtime/
defs1_linux.go 24 O_CLOEXEC = C.O_CLOEXEC
defs3_linux.go 26 O_CLOEXEC = C.O_CLOEXEC
defs2_linux.go 120 O_CLOEXEC = C.O_CLOEXEC
  /system/core/libutils/include/utils/
Compat.h 47 #define O_CLOEXEC O_NOINHERIT
  /toolchain/binutils/binutils-2.27/gold/
descriptors.cc 38 // O_CLOEXEC is only available on newer systems.
39 #ifndef O_CLOEXEC
40 #define O_CLOEXEC 0
116 flags |= O_CLOEXEC;
145 // close-on-exec flag, even if O_CLOEXEC is not defined.
146 // FIXME: In some cases O_CLOEXEC may be defined in the
150 if (O_CLOEXEC == 0
  /frameworks/base/tools/aapt2/io/
FileStream.cpp 29 // This is only needed for O_CLOEXEC.
31 #define O_CLOEXEC O_NOINHERIT
42 int mode = O_RDONLY | O_CLOEXEC | O_BINARY;
113 int mode = O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_BINARY;
  /external/fio/oslib/
libmtd_common.h 67 #ifndef O_CLOEXEC
68 #define O_CLOEXEC 0
  /external/ltp/include/lapi/
fcntl.h 25 #ifndef O_CLOEXEC
26 # define O_CLOEXEC 02000000
30 # define SOCK_CLOEXEC O_CLOEXEC
  /external/toybox/lib/
portability.h 209 #ifndef O_CLOEXEC
210 #define O_CLOEXEC 02000000
  /system/core/base/
file.cpp 41 #define O_CLOEXEC O_NOINHERIT
73 int flags = O_RDONLY | O_CLOEXEC | O_BINARY | (follow_symlinks ? 0 : O_NOFOLLOW);
107 int flags = O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_BINARY |
135 int flags = O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_BINARY |
  /prebuilts/go/darwin-x86/src/syscall/
const_plan9.go 11 O_CLOEXEC = 32
syscall_nacl.go 126 O_CLOEXEC = 0
types_windows.go 47 O_CLOEXEC = 0x80000
  /prebuilts/go/linux-x86/src/syscall/
const_plan9.go 11 O_CLOEXEC = 32
syscall_nacl.go 126 O_CLOEXEC = 0
types_windows.go 47 O_CLOEXEC = 0x80000
  /bionic/libc/kernel/uapi/asm-generic/
fcntl.h 65 #ifndef O_CLOEXEC
66 #define O_CLOEXEC 02000000
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 62 #ifndef O_CLOEXEC
63 #define O_CLOEXEC 02000000 /* set close_on_exec */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
fcntl.h 61 #ifndef O_CLOEXEC
62 #define O_CLOEXEC 02000000 /* set close_on_exec */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
fcntl.h 51 # define O_CLOEXEC 02000000 /* Set close_on_exec. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 52 # define O_CLOEXEC 02000000 /* Set close_on_exec. */
  /libcore/luni/src/main/java/android/system/
OsConstants.java 369 public static final int O_CLOEXEC = placeholder();
    [all...]

Completed in 1292 milliseconds

1 2 3 4