Home
last modified time | relevance | path

Searched refs:SOCK_CLOFORK (Results 1 – 4 of 4) sorted by relevance

/freebsd/lib/libsysdecode/
H A Dflags.c199 X(SOCK_CLOEXEC) X(SOCK_CLOFORK) X(SOCK_NONBLOCK) XEND
210 type & ~(SOCK_CLOEXEC | SOCK_CLOFORK | SOCK_NONBLOCK)); in sysdecode_socket_type()
216 *rem = type & ~(SOCK_CLOEXEC | SOCK_CLOFORK | SOCK_NONBLOCK); in sysdecode_socket_type()
219 val = type & (SOCK_CLOEXEC | SOCK_CLOFORK | SOCK_NONBLOCK); in sysdecode_socket_type()
/freebsd/cddl/contrib/opensolaris/tests/os-tests/tests/oclo/
H A Doclo.c463 type |= SOCK_CLOFORK; in oclo_socket()
484 ltype |= SOCK_CLOFORK; in oclo_accept_common()
489 atype |= SOCK_CLOFORK; in oclo_accept_common()
589 type |= SOCK_CLOFORK; in oclo_rights_common()
/freebsd/sys/kern/
H A Duipc_syscalls.c154 if ((type & SOCK_CLOFORK) != 0) { in kern_socket()
155 type &= ~SOCK_CLOFORK; in kern_socket()
360 ((flags & SOCK_CLOFORK) != 0 ? O_CLOFORK : 0), &fcaps); in kern_accept4()
443 if ((uap->flags & ~(SOCK_CLOEXEC | SOCK_CLOFORK | SOCK_NONBLOCK)) != 0) in sys_accept4()
565 if ((type & SOCK_CLOFORK) != 0) { in kern_socketpair()
566 type &= ~SOCK_CLOFORK; in kern_socketpair()
/freebsd/sys/sys/
H A Dsocket.h114 #define SOCK_CLOFORK 0x40000000 macro