Searched refs:pipe (Results 251 - 275 of 300) sorted by relevance

<<1112

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp1710 TSAN_INTERCEPTOR(int, pipe, int *pipefd) {
1711 SCOPED_TSAN_INTERCEPTOR(pipe, pipefd);
1712 int res = REAL(pipe)(pipefd);
2735 TSAN_INTERCEPT(pipe);
/freebsd-11-stable/usr.sbin/rtsold/
H A Drtsol.c800 error = pipe(fd);
803 "failed to create a pipe: %s", strerror(errno));
865 /* Connect a pipe read-end to child's STDIN. */
/freebsd-11-stable/contrib/gcc/
H A Dsys-protos.h822 extern int pipe(int *);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dinfttrace.c5049 status = pipe (startup_semaphore.parent_channel);
5052 warning ("error getting parent pipe for startup semaphore");
5056 status = pipe (startup_semaphore.child_channel);
5059 warning ("error getting child pipe for startup semaphore");
/freebsd-11-stable/usr.sbin/pmcstudy/
H A Dpmcstudy.c83 if (pipe(pdesin) < 0)
86 if (pipe(pdesout) < 0) {
/freebsd-11-stable/crypto/openssh/contrib/redhat/
H A Dopenssh.spec734 - Back out the pipe patch.
/freebsd-11-stable/usr.sbin/ppp/
H A Dbundle.c1741 if (pipe(fds) == -1) {
1742 log_Printf(LogERROR, "pipe: %s\n", strerror(errno));
1755 if (pipe(fds) == -1) {
1756 log_Printf(LogERROR, "pipe(2): %s\n", strerror(errno));
/freebsd-11-stable/contrib/diff/src/
H A Ddiff3.c1168 if (pipe (fds) != 0)
1169 perror_with_exit ("pipe");
/freebsd-11-stable/sys/security/mac_stub/
H A Dmac_stub.c68 #include <sys/pipe.h>
/freebsd-11-stable/contrib/bmake/
H A Dmeta.c1611 if (pipe(childPipe) < 0)
1612 Punt("Cannot create pipe: %s", strerror(errno));
1624 execError("dup2", "pipe");
H A Dmain.c184 static int jp_0 = -1, jp_1 = -1; /* ends of parent job pipe */
1652 * Open a pipe for fetching its output
1654 if (pipe(fds) == -1) {
1655 *errnum = "Couldn't create pipe for \"%s\"";
1665 * Close input side of pipe
1707 * Close the input side of the pipe.
H A Djob.c443 if (pipe(job->jobPipe) == -1)
444 Punt("Cannot create pipe: %s", strerror(errno));
462 * We mark the input side of the pipe non-blocking; we poll(2) the
463 * pipe when we're waiting for a job token, but we might lose the
465 * from the pipe should not block.
521 * Sends a token on the child exit pipe to wake us up from
1415 * Pass job token pipe to submakes.
1428 * Set up the child's output to be routed through the pipe
1765 /* Create the pipe by which we'll get the shell's output. */
1821 * whenever there is something to read on the pipe
[all...]
/freebsd-11-stable/usr.sbin/pmcstat/
H A Dpmcstat.c1164 * consumer via a pipe.
1173 * through a pipe.
1175 if (pipe(pipefd) < 0)
1176 err(EX_OSERR, "ERROR: pipe(2) failed");
/freebsd-11-stable/usr.bin/diff/
H A Ddiffreg.c337 pipe(pfd);
447 /* close the pipe to pr and restore stdout */
/freebsd-11-stable/lib/libusb/
H A Dlibusb10.c202 ret = pipe(ctx->ctrl_pipe);
210 /* set non-blocking mode on the control pipe to avoid deadlock */
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devutil.c2586 if (pipe(fd) == 0) {
2598 event_warn("%s: pipe", __func__);
/freebsd-11-stable/crypto/openssh/
H A Dsshd.c1179 * the read end of the pipe is ready
1180 * if the child has closed the pipe
1220 if (pipe(startup_p) == -1) {
1936 debug("rexec start in %d out %d newsock %d pipe %d sock %d",
1968 debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
H A Dmonitor.c1651 if (pipe(pair) == -1)
1652 fatal("%s: pipe: %s", __func__, strerror(errno));
/freebsd-11-stable/sys/dev/drm2/
H A DdrmP.h964 int pipe; member in struct:drm_pending_vblank_event
/freebsd-11-stable/sys/dev/netmap/
H A Dnetmap_kern.h530 struct netmap_kring *pipe; /* if this is a pipe ring, member in struct:netmap_kring
1116 /* pipe identifier is up.name */
1124 struct netmap_pipe_adapter *peer; /* the other end of the pipe */
1128 u_int parent_slot; /* index in the parent pipe array */
/freebsd-11-stable/contrib/sendmail/src/
H A Dutil.c2034 if (pipe(fdv) < 0)
2036 syserr("%s: cannot create pipe for stdout", argv[0]);
/freebsd-11-stable/contrib/unbound/dnstap/
H A Ddtstream.c774 return -1; /* silence 'broken pipe' */
1409 silent = 1; /* silence 'broken pipe' */
2116 if(pipe(dtio->commandpipe) == -1) {
2117 log_err("failed to create pipe: %s", strerror(errno));
/freebsd-11-stable/contrib/sqlite3/tea/
H A Dconfigure4591 # If we're using GCC, see if the compiler understands -pipe. If so, use it.
4596 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the compiler understands -pipe" >&5
4597 $as_echo_n "checking if the compiler understands -pipe... " >&6; }
4602 hold_cflags=$CFLAGS; CFLAGS="$CFLAGS -pipe"
4625 CFLAGS="$CFLAGS -pipe"
/freebsd-11-stable/contrib/ee/
H A Dee.c174 int pipe_out[2]; /* pipe file desc for output */
175 int pipe_in[2]; /* pipe file descriptors for input */
3118 pipe(pipe_in); /* create a pipe */
3128 | redirect stdout to pipe
3134 | redirect stderr to pipe
3148 | prepare editor to read from the pipe
3168 | (the pipe is closed, no more output can be expected)
3177 pipe(pipe_out);
3191 | pipe (whic
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp215 case tok::pipe: // '|'
2553 case tok::pipe:

Completed in 287 milliseconds

<<1112