Searched refs:pipe (Results 276 - 300 of 328) sorted by relevance

<<11121314

/freebsd-current/sys/netgraph/
H A Dng_pipe.c247 NETGRAPH_INIT(pipe, &ng_pipe_typestruct);
/freebsd-current/contrib/ntp/ntpd/
H A Dntpd.c606 * EOF on the monitor pipe.
1002 if ( !nofork && pipe(daemon_pipe)) {
/freebsd-current/contrib/xz/src/xz/
H A Dfile_io.c97 /// Self-pipe used together with the user_abort variable to avoid
120 // Create a pipe for the self-pipe trick.
121 if (pipe(user_abort_pipe))
122 message_fatal(_("Error creating a pipe: %s"),
125 // Make both ends of the pipe non-blocking.
130 message_fatal(_("Error creating a pipe: %s"),
149 // If the write() fails, it's probably due to the pipe being full.
173 /// This uses the self-pipe trick to avoid a race condition that can occur
179 /// POSIX) but neither is portable enough in 2013. The self-pipe tric
[all...]
/freebsd-current/usr.sbin/pmcstudy/
H A Dpmcstudy.c80 if (pipe(pdesin) < 0)
83 if (pipe(pdesout) < 0) {
/freebsd-current/usr.sbin/ppp/
H A Dbundle.c1736 if (pipe(fds) == -1) {
1737 log_Printf(LogERROR, "pipe: %s\n", strerror(errno));
1750 if (pipe(fds) == -1) {
1751 log_Printf(LogERROR, "pipe(2): %s\n", strerror(errno));
/freebsd-current/usr.sbin/syslogd/
H A Dsyslogd.c255 F_PIPE, /* pipe to program */
857 * Close our end of the pipe so our
2320 /* close our end of the pipe */
3234 if (pipe(pipefd) == -1) {
3235 warn("failed to daemonize, pipe");
3579 if (pipe(pfd) == -1)
3616 * Avoid blocking on a hung pipe. With O_NONBLOCK, we are
3619 * the pipe, and fork a new logging subprocess if necessary.
3621 * it terminated itself due to closing its input pipe (so we
3627 "Warning: cannot change pipe t
[all...]
/freebsd-current/crypto/openssh/
H A Dsshconnect2.c2034 if (pipe(to) == -1) {
2035 error_f("pipe: %s", strerror(errno));
2038 if (pipe(from) == -1) {
2039 error_f("pipe: %s", strerror(errno));
H A Dmonitor.c1801 if (pipe(pair) == -1)
1802 fatal_f("pipe: %s", strerror(errno));
H A Dsshd.c1249 error_f("startup pipe %d (fd=%d): "
1327 if (pipe(startup_p) == -1) {
1328 error_f("pipe(startup_p): %s", strerror(errno));
2183 debug("rexec start in %d out %d newsock %d pipe %d sock %d",
2216 debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
/freebsd-current/contrib/diff/src/
H A Ddiff3.c1167 if (pipe (fds) != 0)
1168 perror_with_exit ("pipe");
/freebsd-current/lib/libusb/
H A Dlibusb10.c236 ret = pipe(ctx->ctrl_pipe);
244 /* set non-blocking mode on the control pipe to avoid deadlock */
/freebsd-current/sys/security/mac_stub/
H A Dmac_stub.c67 #include <sys/pipe.h>
/freebsd-current/contrib/bmake/
H A Dmeta.c1642 if (pipe(childPipe) < 0)
1643 Punt("Cannot create pipe: %s", strerror(errno));
1654 execDie("dup2", "pipe");
H A Dmain.c134 static int jp_0 = -1, jp_1 = -1; /* ends of parent job pipe */
1754 if (pipe(pipefds) == -1) {
1756 "Couldn't create pipe for \"", cmd, "\"");
1791 (void)close(pipefds[0]); /* Close the input side of the pipe. */
/freebsd-current/contrib/ntp/sntp/libevent/
H A Devutil.c2688 if (pipe(fd) == 0) {
2700 event_warn("%s: pipe", __func__);
/freebsd-current/sys/dev/drm2/
H A DdrmP.h962 int pipe; member in struct:drm_pending_vblank_event
/freebsd-current/tests/sys/aio/
H A Daio_test.c738 ATF_REQUIRE_MSG(pipe(pipes) != -1,
739 "pipe failed: %s", strerror(errno));
/freebsd-current/contrib/unbound/dnstap/
H A Ddtstream.c779 return -1; /* silence 'broken pipe' */
1414 silent = 1; /* silence 'broken pipe' */
2121 if(pipe(dtio->commandpipe) == -1) {
2122 log_err("failed to create pipe: %s", strerror(errno));
/freebsd-current/contrib/libevent/
H A Devutil.c2688 if (pipe(fd) == 0) {
2700 event_warn("%s: pipe", __func__);
/freebsd-current/sys/dev/hyperv/vmbus/
H A Dvmbus_chan.c1890 offer->chm_udata.pipe.user_def[0];
/freebsd-current/contrib/capsicum-test/
H A Dcapability-fd.cc1065 // Send the file descriptor over the pipe to the sub-process
1288 EXPECT_OK(pipe(fds));
/freebsd-current/tests/sys/posixshm/
H A Dposixshm_test.c1843 ATF_REQUIRE(pipe(pfd) == 0);
/freebsd-current/contrib/sendmail/src/
H A Dutil.c2180 if (pipe(fdv) < 0)
2182 syserr("%s: cannot create pipe for stdout", argv[0]);
/freebsd-current/sys/dev/netmap/
H A Dnetmap_kern.h530 struct netmap_kring *pipe; /* if this is a pipe ring, member in struct:netmap_kring
1164 /* pipe identifier is up.name */
1172 struct netmap_pipe_adapter *peer; /* the other end of the pipe */
1176 u_int parent_slot; /* index in the parent pipe array */
/freebsd-current/contrib/llvm-project/clang/lib/Format/
H A DFormatTokenLexer.cpp270 {tok::pipe, tok::arrow},

Completed in 701 milliseconds

<<11121314