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

1 2

  /external/strace/xlat/
sock_type_flags.h 4 #if defined(SOCK_CLOEXEC) || (defined(HAVE_DECL_SOCK_CLOEXEC) && HAVE_DECL_SOCK_CLOEXEC)
5 XLAT(SOCK_CLOEXEC),
  /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;
  /development/ndk/sources/android/libportable/arch-mips64/
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;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
socket.h 65 SOCK_CLOEXEC = 02000000, /* Atomically set close-on-exec flag for the
67 #define SOCK_CLOEXEC SOCK_CLOEXEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
socket.h 65 SOCK_CLOEXEC = 02000000, /* Atomically set close-on-exec flag for the
67 #define SOCK_CLOEXEC SOCK_CLOEXEC
  /external/qemu/util/
osdep.c 289 #ifdef SOCK_CLOEXEC
290 ret = socket(domain, type | SOCK_CLOEXEC, protocol);
312 ret = accept4(s, addr, addrlen, SOCK_CLOEXEC);
  /bionic/tests/
sys_socket_test.cpp 49 int fd = socket(PF_UNIX, SOCK_SEQPACKET | SOCK_CLOEXEC | SOCK_NONBLOCK, 0);
122 int fd_acc = accept4(fd, reinterpret_cast<struct sockaddr*>(addr), &len, SOCK_CLOEXEC);
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_netlink.c 100 #if defined(SOCK_CLOEXEC)
101 socktype |= SOCK_CLOEXEC;
  /bionic/libc/upstream-netbsd/lib/libc/gen/
popen.c 95 int stype = flags ? (SOCK_STREAM | SOCK_CLOEXEC) : SOCK_STREAM;
  /system/core/libcutils/
debugger.c 101 SOCK_STREAM | SOCK_CLOEXEC);
  /system/core/logd/
libaudit.c 206 return socket(PF_NETLINK, SOCK_RAW | SOCK_CLOEXEC, NETLINK_AUDIT);
  /bionic/libc/include/sys/
socket.h 67 #define SOCK_CLOEXEC O_CLOEXEC
  /bionic/linker/
debugger.cpp 218 int s = socket_abstract_client(DEBUGGER_SOCKET_NAME, SOCK_STREAM | SOCK_CLOEXEC);
  /development/ndk/platforms/android-L/include/sys/
socket.h 67 #define SOCK_CLOEXEC O_CLOEXEC
  /external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
socket.h 73 #define SOCK_CLOEXEC 0x100
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/sys/
socket.h 67 #define SOCK_CLOEXEC O_CLOEXEC
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/sys/
socket.h 67 #define SOCK_CLOEXEC O_CLOEXEC
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/sys/
socket.h 67 #define SOCK_CLOEXEC O_CLOEXEC
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/sys/
socket.h 67 #define SOCK_CLOEXEC O_CLOEXEC
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/sys/
socket.h 67 #define SOCK_CLOEXEC O_CLOEXEC
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/sys/
socket.h 67 #define SOCK_CLOEXEC O_CLOEXEC
  /bionic/libc/dns/net/
getaddrinfo.c 365 int s = socket(pf, SOCK_DGRAM | SOCK_CLOEXEC, IPPROTO_UDP);
436 sock = socket(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0);
887 s = socket(pai->ai_family, SOCK_DGRAM | SOCK_CLOEXEC, 0);
    [all...]
  /system/core/liblog/
logd_write.c 113 i = socket(PF_UNIX, SOCK_DGRAM | SOCK_CLOEXEC, 0);
  /bionic/libc/dns/resolv/
res_send.c 781 statp->_vcsock = socket(nsap->sa_family, SOCK_STREAM | SOCK_CLOEXEC, 0);
1064 EXT(statp).nssocks[ns] = socket(nsap->sa_family, SOCK_DGRAM | SOCK_CLOEXEC, 0);
    [all...]