OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SOCK_CLOEXEC
(Results
1 - 9
of
9
) 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
/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/libc/gen/
popen.c
95
int stype = flags ? (SOCK_STREAM |
SOCK_CLOEXEC
) : SOCK_STREAM;
/external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
socket.h
73
#define
SOCK_CLOEXEC
0x100
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_proxy.cc
[
all
...]
/external/strace/
net.c
341
#ifdef
SOCK_CLOEXEC
342
{
SOCK_CLOEXEC
, "
SOCK_CLOEXEC
" },
[
all
...]
Completed in 1277 milliseconds