Searched refs:pipe (Results 151 - 175 of 328) sorted by relevance

1234567891011>>

/freebsd-current/tools/test/stress2/misc/
H A Dsocketpair2.sh52 Some systems seem to base how much can be written to the pipe based
H A Dkevent7.sh181 if (pipe(fds) == -1)
182 err(1, "pipe()");
/freebsd-current/contrib/bmake/mk/sys/
H A DDarwin.mk27 PIPE ?= -pipe
H A DSunOS.mk59 CC ?= gcc -pipe
/freebsd-current/usr.sbin/cron/cron/
H A Ddo_command.c160 if (pipe(stdin_pipe) != 0 || pipe(stdout_pipe) != 0) {
161 log_it("CRON", getpid(), "error", "can't pipe");
243 /* close the pipe ends that we won't use. this doesn't affect
407 /* close the ends of the pipe that will only be referenced in the
414 * write, to the pipe connected to child's stdin, any input specified
419 * Note that if the input data won't fit into one pipe buffer (2K
437 /* close the pipe we don't use, since we inherited it and
466 /* close the pipe, causing an EOF condition. fclose causes
475 /* close the pipe t
[all...]
/freebsd-current/sys/netpfil/ipfw/
H A Dip_fw_log.c217 TARG(cmd->arg1, pipe));
221 TARG(cmd->arg1, pipe));
/freebsd-current/usr.bin/tip/tip/
H A Dtip.c219 pipe(fildes); pipe(repdes);
/freebsd-current/contrib/flex/src/
H A Dfilter.c149 if (pipe (pipes) == -1)
150 flexerror (_("pipe failed"));
158 /* We need stdin (the FILE* stdin) to connect to this new pipe.
161 * So we dup the new pipe onto the stdin descriptor and use a no-op fseek
241 /* Store a copy of the stdout pipe, which is already piped to C file
242 * through the running chain. Then create a new pipe to the H file as
258 /* Now to_c is a pipe to the C branch, and to_h is a pipe to the H branch.
/freebsd-current/contrib/capsicum-test/
H A Dcapmode.cc410 int rc = pipe(fd2);
574 EXPECT_OK(pipe(pipefds));
641 EXPECT_OK(pipe(thread_pipe));
643 EXPECT_OK(pipe(proc_pipe));
/freebsd-current/contrib/ntp/libntp/
H A Dntp_worker.c58 rc = pipe(&fds[0]);
/freebsd-current/contrib/netbsd-tests/fs/common/
H A Dfstest_nfs.c106 if (pipe(pipes) == -1)
/freebsd-current/contrib/netbsd-tests/kernel/
H A Dt_lockf.c129 const char pipe_errmsg[] = "child: pipe write failed\n";
139 ATF_REQUIRE_MSG(pipe(pipe_fd) == 0, "pipe: %s", strerror(errno));
165 "parent: pipe does not match");
/freebsd-current/crypto/heimdal/appl/test/
H A Dgssapi_client.c233 if (pipe (pipefd) < 0)
234 err (1, "pipe");
/freebsd-current/contrib/netbsd-tests/lib/libc/net/
H A Dh_dns_server.c186 * Set up the pipe, making sure the write end does not
191 r = pipe(__daemon2_detach_pipe);
257 /* May get "broken pipe" here if parent is killed */
/freebsd-current/contrib/dma/
H A DMakefile17 CFLAGS?= -O -pipe
/freebsd-current/crypto/openssh/
H A Dreadpass.c64 if (pipe(p) == -1) {
65 error_f("pipe: %s", strerror(errno));
/freebsd-current/cddl/usr.sbin/zfsd/
H A Dzfsd.cc161 if (pipe(s_signalPipeFD) != 0)
162 errx(1, "Unable to allocate signal pipe. Exiting");
165 errx(1, "Unable to set pipe as non-blocking. Exiting");
168 errx(1, "Unable to set pipe as non-blocking. Exiting");
366 * This pipe exists just to close the signal
369 * have space in the pipe to write.
/freebsd-current/sys/dev/hyperv/vmbus/
H A Dvmbus_reg.h379 /* Size of the user defined data buffer for non-pipe offers */
382 /* Size of the user defined data buffer for pipe offers. */
403 * For integrated pipe protocol, which is implemented on
412 } pipe; member in union:vmbus_chanmsg_choffer::__anon2466
/freebsd-current/tools/tools/syscall_timing/
H A Dsyscall_timing.c426 * pipe creation is expensive, as it will allocate a new file
427 * descriptor, allocate a new pipe, hook it all up, and return.
429 * the file descriptors and return the pipe.
431 if (pipe(fd) < 0)
432 err(-1, "test_pipe: pipe");
437 if (pipe(fd) == -1)
438 err(-1, "test_pipe: pipe");
484 if (pipe(fd) < 0)
485 err(-1, "pipe");
550 if (pipe(f
[all...]
/freebsd-current/tests/sys/kqueue/libkqueue/
H A Dproc.c88 if (pipe(pipe_fd)) {
89 err(1, "pipe (parent) failed! (%s() at %s:%d)",
103 err(1, "read from pipe in child failed! (ret %zd) (%s() at %s:%d)",
144 err(1, "write to pipe in parent failed! (ret %zd) (%s() at %s:%d)",
/freebsd-current/tools/regression/sockets/zerosend/
H A Dzerosend.c203 if (pipe(fdp) < 0)
204 err(1, "%s: setup_pipe: pipe", test);
/freebsd-current/tools/regression/poll/
H A Dpipeselect.c296 if (pipe(fd) != 0)
297 err(1, "pipe");
H A Dpipepoll.c299 if (pipe(fd) != 0)
300 err(1, "pipe");
/freebsd-current/contrib/blocklist/port/
H A Dpopenve.c105 if (pipe(pdes) == -1)
/freebsd-current/lib/libutil/tests/
H A Dpidfile_test.c135 if (pipe(fd) != 0)

Completed in 442 milliseconds

1234567891011>>