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

  /bionic/libc/upstream-netbsd/
netbsd-compat.h 27 // TODO: our 2.6 emulator kernels don't support SOCK_CLOEXEC yet, so we have to do without.
28 #define SOCK_CLOEXEC 0
  /development/ndk/sources/android/libportable/arch-mips/
socket.c 44 /* Current NDK headers do not define SOCK_CLOEXEC or O_CLOEXEC */
48 #if !defined(SOCK_CLOEXEC) && defined(O_CLOEXEC)
49 # define SOCK_CLOEXEC O_CLOEXEC
67 #if defined(SOCK_CLOEXEC_PORTABLE) && defined(SOCK_CLOEXEC)
69 native_type |= SOCK_CLOEXEC;
107 #if defined(SOCK_CLOEXEC_PORTABLE) && defined(SOCK_CLOEXEC)
108 if (native_type & SOCK_CLOEXEC) {
110 native_type &= ~SOCK_CLOEXEC;
  /external/qemu/
osdep.c 153 #ifdef SOCK_CLOEXEC
154 ret = socket(domain, type | SOCK_CLOEXEC, protocol);
175 ret = accept4(s, addr, addrlen, SOCK_CLOEXEC);
  /external/kernel-headers/original/asm-mips/
socket.h 120 #define SOCK_CLOEXEC O_CLOEXEC
  /bionic/libc/upstream-netbsd/libc/gen/
popen.c 95 int stype = flags ? (SOCK_STREAM | SOCK_CLOEXEC) : SOCK_STREAM;
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_netlink.c 58 linux_netlink_socket = socket(PF_NETLINK, SOCK_RAW|SOCK_CLOEXEC|SOCK_NONBLOCK, NETLINK_KOBJECT_UEVENT);
  /external/strace/
net.c 341 #ifdef SOCK_CLOEXEC
342 { SOCK_CLOEXEC, "SOCK_CLOEXEC" },
    [all...]

Completed in 244 milliseconds