Symbol: O_CLOFORK
lib/libc/gen/dup3.c
51
if ((flags & ~(O_CLOEXEC | O_CLOFORK)) != 0) {
lib/libc/gen/dup3.c
57
((flags & O_CLOFORK) != 0 ? FD_CLOFORK : 0);
lib/libc/stdio/mktemp.c
117
O_EXLOCK | O_SYNC | O_CLOEXEC | O_CLOFORK)) != 0) {
sys/kern/sys_pipe.c
271
if ((uap->flags & ~(O_CLOEXEC | O_CLOFORK | O_NONBLOCK)) != 0)
sys/kern/sys_pipe.c
314
if (flags & O_CLOFORK)
sys/kern/sys_pipe.c
334
if (flags & O_CLOFORK)
sys/kern/uipc_syscalls.c
116
oflags |= O_CLOFORK;
sys/kern/uipc_syscalls.c
132
if (oflags & O_CLOFORK)
sys/kern/uipc_syscalls.c
701
oflags |= O_CLOFORK;
sys/kern/uipc_syscalls.c
739
if (oflags & O_CLOFORK) {
sys/kern/vfs_syscalls.c
2279
if (oflags & O_CLOFORK)
sys/kern/vfs_syscalls.c
4977
if (uap->flags & O_CLOFORK)
test/bsd/dup_test/dup_test.c
405
if ((fd2 = dup3(fd1, fd1 + 1, O_CLOFORK)) < 0)
test/bsd/dup_test/dup_test.c
456
if (dup3(fd1, fd1, O_CLOFORK) != -1)
test/bsd/dup_test/dup_test.c
472
if ((fd2 = dup3(fd1, rlp.rlim_cur + 1, O_CLOFORK)) >= 0)
test/illumos/oclo/oclo.c
1221
int flags = O_RDWR | O_CLOFORK;
test/illumos/oclo/oclo.c
231
flags |= O_CLOFORK;
test/illumos/oclo/oclo.c
392
dflags |= O_CLOFORK;
test/illumos/oclo/oclo.c
439
flags |= O_CLOFORK;
test/illumos/oclo/oclo.c
712
.clo_flags = O_CLOFORK | O_CLOEXEC,
test/illumos/oclo/oclo.c
720
.clo_flags = O_CLOFORK,
test/illumos/oclo/oclo.c
728
.clo_flags = O_CLOFORK | O_CLOEXEC,
test/illumos/oclo/oclo.c
736
.clo_flags = O_CLOFORK,
test/illumos/oclo/oclo.c
744
.clo_flags = O_CLOFORK | O_CLOEXEC,
test/illumos/oclo/oclo.c
752
.clo_flags = O_CLOFORK,
test/illumos/oclo/oclo.c
760
.clo_flags = O_CLOFORK | O_CLOEXEC,
test/illumos/oclo/oclo.c
768
.clo_flags = O_CLOFORK,
test/illumos/oclo/oclo_errors.c
145
if (!oclo_dup3("dup3(): O_CLOFORK|O_WRONLY", O_CLOFORK | O_WRONLY)) {
test/illumos/oclo/oclo_errors.c
171
if (!oclo_pipe2("pipe2(): O_CLOFORK|O_WRONLY", O_CLOFORK | O_WRONLY)) {