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

<<1112131415161718

/macosx-10.9.5/BerkeleyDB-21/db/repmgr/
H A Drepmgr_posix.c322 if ((ret = pipe(file_desc)) == -1) {
484 * the pipe.
559 * pipe.
661 * Read any bytes in the signalling pipe. Note that we don't
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-c/detail/
H A Dprocess.c74 if (pipe(sp->m_pipefds) == -1)
75 err = atf_libc_error(errno, "Failed to create pipe");
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dpex-unix.c496 /* Create a pipe. */
502 return pipe (p);
/macosx-10.9.5/gnudiff-19/diffutils/src/
H A Dutil.c155 we fork off a `pr' and make OUTFILE a pipe to it.
199 /* Make OUTFILE a pipe to a subsidiary `pr'. */
204 if (pipe (pipes) != 0)
205 pfatal_with_name ("pipe");
/macosx-10.9.5/ksh-20/ksh/src/lib/libcoshell/
H A Dcoexec.c53 if (pipe(fds) < 0)
55 errormsg(state.lib, ERROR_LIBRARY|ERROR_SYSTEM|2, "%s: cannot allocate service pipe", cs->name);
/macosx-10.9.5/nano-11/src/
H A Dtext.c441 if (pipe(fd) == -1) {
442 statusbar(_("Could not pipe"));
1944 if (pipe(spell_fd) == -1 || pipe(sort_fd) == -1 ||
1945 pipe(uniq_fd) == -1)
1946 return _("Could not create pipe");
1964 /* Send spell's standard output to the pipe. */
1983 * standard input with the standard output of the old pipe. */
1989 /* Send sort's standard output to the new pipe. */
2009 * standard input with the standard output of the old pipe
[all...]
/macosx-10.9.5/ppp-727.90.1/Dialogs/
H A DDialogs.c488 if (pipe(dialog_ui_fds) < 0) {
489 error("Dialogs failed to create pipe for User Interface...\n");
/macosx-10.9.5/python-76.100.1/2.5/
H A DGNUmakefile41 export RC_NONARCH_CFLAGS = -pipe
/macosx-10.9.5/python-76.100.1/2.6/
H A DGNUmakefile41 export RC_NONARCH_CFLAGS = -pipe
/macosx-10.9.5/python-76.100.1/
H A DMakefile51 export RC_NONARCH_CFLAGS = -pipe
/macosx-10.9.5/ruby-104/ruby/ext/socket/
H A Dextconf.rb158 ret = pipe(ps);
159 if (ret == -1) { perror("pipe"); exit(EXIT_FAILURE); }
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/
H A Drdoc.rb464 if @options.pipe then
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_markup_to_html.rb383 @options.pipe = true
/macosx-10.9.5/screen-22/screen/
H A Dtty.sh1153 if (pipe(consredirfd))
1155 Msg(errno, "pipe");
/macosx-10.9.5/tcl-102/tcl/tcl/unix/
H A DtclUnixNotfy.c141 * descriptor defined below. This file descriptor is the input-end of a pipe
143 * pipe. Hence writing to this file descriptor will cause the select() system
146 * You must hold the notifierMutex lock before writing to the pipe.
233 * Wait for the notifier pipe to be created.
275 * If this is the last thread to use the notifier, close the notifier pipe
283 Tcl_Panic("Tcl_FinalizeNotifier: notifier pipe not initialized");
289 * a "q" message has arrived, it will then close its side of the pipe
290 * and terminate its thread. Note the we can not just close the pipe
293 * the EOF on the pipe until the child processes had terminated. [Bug:
803 * masks - skipping this caused a hang when trying to close a pipe
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/unix/
H A DtclUnixNotfy.c141 * file descriptor is the input-end of a pipe and the notifier thread is
142 * listening for data on the output-end of the same pipe. Hence writing
233 * Wait for the notifier pipe to be created.
276 * pipe and wait for the background thread to terminate.
282 panic("Tcl_FinalizeNotifier: notifier pipe not initialized");
289 * its side of the pipe and terminate its thread. Note the we can
290 * not just close the pipe and check for EOF in the notifier
292 * exec, select() would not register the EOF on the pipe until the
784 * masks - skipping this caused a hang when trying to close a pipe
877 * by writing a single byte to a special pipe tha
[all...]
/macosx-10.9.5/xnu-2422.115.4/tools/tests/libMicro/apple/
H A Dlmbench_lat_ctx.c143 debug("read/write on pipe");
148 debug("read/write on pipe");
217 * but some such as the pipe() benchmarks will not.
317 debug("write/read/write on pipe");
332 if (pipe(p[i]) == -1) {
413 debug("read/write on pipe");
417 debug("read/write on pipe");
622 debug("read/write on pipe");
626 debug("read/write on pipe");
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dexec.c1561 if (pipe(synch) < 0 || (pid = zfork(&bgtime)) == -1) {
1566 zerr("pipe failed: %e", errno);
1698 if (pipe(synch) < 0) {
1699 zerr("pipe failed: %e", errno);
1956 zclose(mn->pipe);
1973 while ((len = read(mn->pipe, buf, TCBUFSIZE)) != 0) {
1993 write_loop(mn->pipe, buf, len);
2027 if (mn->pipe != i) {
2132 mfds[fd1]->pipe = pipes[1 - rflag];
2836 if (pipe(sync
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dsshconnect.c118 if (pipe(pin) < 0 || pipe(pout) < 0)
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dgnulib.mk1377 EXTRA_DIST += dup-safer.c fd-safer.c pipe-safer.c unistd--.h unistd-safer.h
1379 EXTRA_libtar_a_SOURCES += dup-safer.c fd-safer.c pipe-safer.c
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/sfio/
H A Dsfhdr.h117 #define syspipef pipe
292 #define syspipef pipe
/macosx-10.9.5/libauto-185.5/auto_tester/
H A DTestCase.m306 if (pipe(_fds) == -1) {
/macosx-10.9.5/llvmCore-3425.0.33/utils/unittest/googletest/
H A Dgtest-death-test.cc270 // severity. On Windows, the message is read from a pipe handle. On other
353 // test child process via a pipe, interprets it to set the outcome_
371 // Descriptor to the read end of the pipe to the child process. It is
373 // pipe in write_fd_.
375 // Descriptor to the child's write end of the pipe to the parent process.
377 // pipe in read_fd_.
382 // test child process via a pipe, interprets it to set the outcome_
390 // failure of the death test) or until the pipe is closed (signifying
432 // it finds any data in our pipe. So, here we write a single flag byte
433 // to the pipe, the
[all...]
/macosx-10.9.5/lsof-52/lsof/
H A Dmisc.c85 * dummy to allow pipe closure to
195 * closePipes() - close open pipe file descriptors
278 if (pipe(Pipes) < 0 || pipe(&Pipes[2]) < 0) {
/macosx-10.9.5/ppp-727.90.1/Drivers/PPTP/PPTP-plugin/
H A Dmain.c746 if (pipe(edgefds) < 0) {
747 error("PPTP: failed to create pipe for starting edge...\n");
785 if (pipe(resolverfds) < 0) {
786 error("PPTP: failed to create pipe for gethostbyname...\n");

Completed in 400 milliseconds

<<1112131415161718