Searched refs:pipe (Results 226 - 250 of 275) sorted by relevance

1234567891011

/freebsd-10.2-release/contrib/groff/src/preproc/html/
H A Dpre-html.cpp787 // now we grab fd=1 so that the next pipe cannot use fd=1
1285 if (pipe(pipedes) < 0)
1286 sys_fatal("pipe");
1297 // to read data emerging from our pipe. There is no point in saving,
1303 // the child's writeable handle on the pipe, since we have no use for it.
1332 // use for our read handle on the pipe, and should close it.
1337 // Now we redirect the `stdout' stream to the inlet end of the pipe,
1344 // end of the pipe so the child process will detect end of data.
1362 // stream to the readable end of our pipe, saving our own `stdin' stream
1394 // for the pipe
[all...]
/freebsd-10.2-release/contrib/bmake/
H A Dmeta.c1388 if (pipe(childPipe) < 0)
1389 Punt("Cannot create pipe: %s", strerror(errno));
1401 execError("dup2", "pipe");
H A Dmain.c181 static int jp_0 = -1, jp_1 = -1; /* ends of parent job pipe */
1541 * Open a pipe for fetching its output
1543 if (pipe(fds) == -1) {
1544 *errnum = "Couldn't create pipe for \"%s\"";
1554 * Close input side of pipe
1593 * Close the input side of the pipe.
/freebsd-10.2-release/sys/netgraph/
H A Dng_pipe.c248 NETGRAPH_INIT(pipe, &ng_pipe_typestruct);
/freebsd-10.2-release/sys/dev/netmap/
H A Dnetmap_kern.h328 struct netmap_kring *pipe; /* if this is a pipe ring, member in struct:netmap_kring
453 * Virtual ports (vale, pipe, monitor...)
781 u_int id; /* pipe identifier */
785 struct netmap_pipe_adapter *peer; /* the other end of the pipe */
788 u_int parent_slot; /* index in the parent pipe array */
/freebsd-10.2-release/sys/kern/
H A Dkern_descrip.c68 #include <sys/pipe.h>
125 static int fill_pipe_info(struct pipe *pi, struct kinfo_file *kif);
3354 error = fill_pipe_info((struct pipe *)data, kif);
3745 fill_pipe_info(struct pipe *pi, struct kinfo_file *kif)
3823 return ("pipe");
/freebsd-10.2-release/tools/regression/posixsem/
H A Dposixsem.c89 /* Macros for passing child status to parent over a pipe. */
96 * creates a pipe and forks a child process. The child process runs
98 * integer gets written over the pipe to the parent and returned in
99 * '*stat'. If there is an error in pipe(), fork(), or wait() this
108 if (pipe(pfd) < 0) {
109 fail_errno("pipe");
129 fail_errno("read(pipe)");
/freebsd-10.2-release/crypto/openssh/
H A Dserverloop.c126 * we write to this pipe if a SIGCHLD is caught in order to avoid
133 if (pipe(notify_pipe) < 0) {
134 error("pipe(notify_pipe) failed %s", strerror(errno));
/freebsd-10.2-release/sys/contrib/octeon-sdk/
H A Dcvmx-ilk.c220 * set pipe group base and length for the interface
226 * @param pipe_base the base of the pipe group
227 * @param pipe_len the length of the pipe group
246 cvmx_dprintf ("ILK%d: %s: pipe base/length out of bounds\n", interface,
269 * @param pch pointer to an array of pipe-channel pair
270 * @param num_chs the number of entries in the pipe-channel array
294 ilk_txx_idx_pmap.s.index = pch->pipe;
911 cvmx_dprintf ("ilk txx pipe: 0x%16lx\n", ilk_txx_pipe.u64);
920 cvmx_dprintf ("ilk txx mem pmap pipe: %3d 0x%16lx\n",
/freebsd-10.2-release/usr.bin/rpcgen/
H A Drpc_main.c320 (void) pipe(pd);
/freebsd-10.2-release/usr.sbin/ppp/
H A Dchat.c729 if (pipe(fids) < 0) {
730 log_Printf(LogCHAT, "Unable to create pipe in ExecStr: %s\n",
H A Dbundle.c1739 if (pipe(fds) == -1) {
1740 log_Printf(LogERROR, "pipe: %s\n", strerror(errno));
1753 if (pipe(fds) == -1) {
1754 log_Printf(LogERROR, "pipe(2): %s\n", strerror(errno));
/freebsd-10.2-release/usr.bin/bc/
H A Dbc.y1176 if (pipe(p) == -1)
1177 err(1, "cannot create pipe");
/freebsd-10.2-release/usr.sbin/rtsold/
H A Drtsol.c785 error = pipe(fd);
788 "failed to create a pipe: %s", strerror(errno));
850 /* Connect a pipe read-end to child's STDIN. */
/freebsd-10.2-release/usr.sbin/ypbind/
H A Dypbind.c524 * What's weird is that forgetting to invalidate the pipe descriptors
659 if (pipe(ypdb->dom_pipe_fds) < 0) {
660 syslog(LOG_WARNING, "pipe: %m");
/freebsd-10.2-release/contrib/gcc/
H A Dsys-protos.h822 extern int pipe(int *);
/freebsd-10.2-release/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-10.2-release/crypto/openssh/contrib/redhat/
H A Dopenssh.spec738 - Back out the pipe patch.
/freebsd-10.2-release/contrib/diff/src/
H A Ddiff3.c1168 if (pipe (fds) != 0)
1169 perror_with_exit ("pipe");
/freebsd-10.2-release/sys/dev/drm2/
H A DdrmP.h931 int pipe; member in struct:drm_pending_vblank_event
/freebsd-10.2-release/sys/security/mac_stub/
H A Dmac_stub.c68 #include <sys/pipe.h>
/freebsd-10.2-release/usr.sbin/pmcstat/
H A Dpmcstat.c1159 * consumer via a pipe.
1168 * through a pipe.
1170 if (pipe(pipefd) < 0)
1171 err(EX_OSERR, "ERROR: pipe(2) failed");
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp592 int err = pipe(pipe_fds);
672 // Close the write end of the pipe since we are done with our
679 // Now we can close the read end of the pipe
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Lex/
H A DLexer.cpp3465 Kind = tok::pipe;
/freebsd-10.2-release/contrib/ntp/sntp/libevent/
H A Devutil.c2586 if (pipe(fd) == 0) {
2598 event_warn("%s: pipe", __func__);

Completed in 240 milliseconds

1234567891011