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

1 2 3 4

  /toolchain/binutils/binutils-2.27/gold/
descriptors.cc 43 // Very old systems may not define FD_CLOEXEC.
44 #ifndef FD_CLOEXEC
45 #define FD_CLOEXEC 1
53 fcntl(fd, F_SETFD, FD_CLOEXEC);
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
fcntl.h 107 #define FD_CLOEXEC 1 ///< close-on-exec flag
  /toolchain/binutils/binutils-2.27/bfd/
bfdio.c 39 #ifndef FD_CLOEXEC
40 #define FD_CLOEXEC 1
78 fcntl (fd, F_SETFD, old | FD_CLOEXEC);
  /bionic/libc/kernel/uapi/asm-generic/
fcntl.h 125 #define FD_CLOEXEC 1
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 162 #define FD_CLOEXEC 1 /* actually anything with low bit set goes */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
fcntl.h 133 #define FD_CLOEXEC 1 /* actually anything with low bit set goes */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
fcntl.h 115 #define FD_CLOEXEC 1 /* actually anything with low bit set goes */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 130 #define FD_CLOEXEC 1 /* actually anything with low bit set goes */
  /prebuilts/go/darwin-x86/src/runtime/
defs_solaris.go 121 FD_CLOEXEC = C.FD_CLOEXEC
  /prebuilts/go/linux-x86/src/runtime/
defs_solaris.go 121 FD_CLOEXEC = C.FD_CLOEXEC
  /prebuilts/go/darwin-x86/src/syscall/
syscall_nacl.go 128 FD_CLOEXEC = 1
zerrors_darwin_386.go 226 FD_CLOEXEC = 0x1
    [all...]
zerrors_darwin_amd64.go 226 FD_CLOEXEC = 0x1
    [all...]
zerrors_darwin_arm.go 222 FD_CLOEXEC = 0x1
    [all...]
zerrors_darwin_arm64.go 227 FD_CLOEXEC = 0x1
    [all...]
zerrors_solaris_amd64.go 265 FD_CLOEXEC = 0x1
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
syscall_nacl.go 128 FD_CLOEXEC = 1
zerrors_darwin_386.go 226 FD_CLOEXEC = 0x1
    [all...]
zerrors_darwin_amd64.go 226 FD_CLOEXEC = 0x1
    [all...]
zerrors_darwin_arm.go 222 FD_CLOEXEC = 0x1
    [all...]
  /external/python/cpython2/Lib/plat-irix5/
FILE.py 205 FD_CLOEXEC = 1
  /libcore/luni/src/test/java/libcore/libcore/io/
OsTest.java 80 Libcore.os.fcntlInt(fis.getFD(), F_SETFD, FD_CLOEXEC);
82 assertTrue((flags & FD_CLOEXEC) != 0);
    [all...]
  /external/python/cpython2/Lib/plat-atheos/
IN.py 647 FD_CLOEXEC = 1
  /external/python/cpython2/Lib/plat-irix6/
FILE.py 633 FD_CLOEXEC = 1
  /libcore/luni/src/main/java/android/system/
OsConstants.java 261 public static final int FD_CLOEXEC = placeholder();
    [all...]

Completed in 414 milliseconds

1 2 3 4