Searched refs:pipe (Results 1 - 25 of 438) sorted by relevance

1234567891011>>

/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dunistd--.h27 #undef pipe macro
28 #define pipe pipe_safer macro
H A Dpipe-safer.c1 /* Invoke pipe, but avoid some glitches.
27 /* Like pipe, but ensure that neither of the file descriptors is
29 platforms that lack pipe. */
35 if (pipe (fd) == 0)
/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_io_select.rb3 w = [ IO.pipe[1] ];
H A Dbm_io_select2.rb13 ios.concat IO.pipe
H A Dbm_io_select3.rb13 r, w = IO.pipe
H A Dbm_vm_thread_pipe.rb1 # Mesure small and plenty pipe read/write.
5 r, w = IO.pipe
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/tests/
H A Dpipe.test2 # pipe.test
4 # Tests for the pipe command.
15 # $Id: pipe.test,v 1.3 2002/04/04 06:10:30 hobbs Exp $
28 puts "The pipe commands test require fork, which does not work under Tk."
33 # FIX: Need win95 tests for pipe.
36 # Create child process to read from the pipe and write a message
47 Test filecmds-4.1 {pipe tests} {
49 set msgBuf "Premature eof on pipe"
59 test pipe-1.1 {pipe test
[all...]
/macosx-10.9.5/CPANInternal-140/Test-Simple/t/Builder/
H A Dfork_with_new_stdout.t24 my $pipe = IO::Pipe->new;
26 $pipe->reader;
27 $b->ok((<$pipe> =~ /FROM CHILD: ok 1/), "ok 1 from child");
28 $b->ok((<$pipe> =~ /FROM CHILD: 1\.\.1/), "1..1 from child");
32 $pipe->writer;
33 my $pipe_fd = $pipe->fileno;
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dpipe.h48 * $FreeBSD: src/sys/sys/pipe.h,v 1.24 2003/08/13 20:01:38 alc Exp $
137 #define PIPE_WSELECT 0x4000 /* Some thread has done an FWRITE select on the pipe */
145 * Per-pipe data structure.
148 struct pipe { struct
151 struct pipemapping pipe_map; /* pipe mapping for direct I/O */
155 struct pipe *pipe_peer; /* link with other direction */
156 u_int pipe_state; /* pipe status info */
163 struct label *pipe_label; /* pipe MAC label - shared */
166 #define PIPE_MTX(pipe) ((pipe)
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dduplex_pipe.c39 /* duplex_pipe - give me a duplex pipe or bust */
44 return (pipe(fds));
/macosx-10.9.5/xnu-2422.115.4/libsyscall/custom/
H A D__pipe.s34 PSEUDO_INT(___pipe, pipe, 0)
43 PSEUDO(___pipe, pipe, 0, cerror_nocancel)
/macosx-10.9.5/xnu-2422.115.4/security/
H A Dmac_pipe.c69 #include <sys/pipe.h>
88 mac_pipe_label_init(struct pipe *cpipe)
103 mac_pipe_label_destroy(struct pipe *cpipe)
123 error = MAC_EXTERNALIZE(pipe, label, elements, outbuf, outbuflen);
133 error = MAC_INTERNALIZE(pipe, label, string);
139 mac_pipe_label_associate(kauth_cred_t cred, struct pipe *cpipe)
147 struct pipe *cpipe)
158 mac_pipe_check_ioctl(kauth_cred_t cred, struct pipe *cpipe, u_int cmd)
171 mac_pipe_check_read(kauth_cred_t cred, struct pipe *cpipe)
184 mac_pipe_check_label_update(kauth_cred_t cred, struct pipe *cpip
[all...]
/macosx-10.9.5/ruby-104/ruby/test/testunit/
H A Dtest_hideskip.rb5 test_out, o = IO.pipe
12 test_out, o = IO.pipe
19 test_out, o = IO.pipe
H A Dtest_redefinition.rb5 test_out, o = IO.pipe
H A Dtest_sorting.rb5 test_out, o = IO.pipe
/macosx-10.9.5/xnu-2422.115.4/libkern/kxld/tests/
H A Dloadtest.py35 pipe = Popen("/usr/sbin/kextfind \( -l -and -x -and -arch i386 \)", shell=True, stdout=PIPE).stdout variable
37 line = pipe.readline()
40 line = pipe.readline()
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_readpartial.rb7 r, w = IO.pipe
18 def pipe method in class:TestReadPartial
32 pipe {|r, w|
38 pipe {|r, w|
49 pipe {|r, w|
60 pipe {|r, w|
H A Dtest_pipe.rb7 r, w = IO.pipe
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Examples/NonFunctional/RemotePyInterpreter/
H A Dremote_bootstrap.py14 pipe = RemotePipe(__runsocketcode__, __clientfile__, netReprCenter, namespace, pool) variable
15 interp = RemoteConsole(pipe, locals=__main__.__dict__)
H A Dremote_console.py15 def __init__(self, pipe, **kw):
16 self.pipe = pipe
22 return self.pipe.expect('RemoteConsole.raw_input', prompt)
25 return self.pipe.expect('RemoteConsole.write', msg)
34 return self.pipe.expect('RemoteConsole.displayhook', value)
37 return self.pipe.expect('RemoteConsole.excepthook', type, value, traceback)
64 sys.stdin = self.pipe.stdin
65 sys.stdout = self.pipe.stdout
66 sys.stderr = self.pipe
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Examples/NonFunctional/RemotePyInterpreter/
H A Dremote_bootstrap.py14 pipe = RemotePipe(__runsocketcode__, __clientfile__, netReprCenter, namespace, pool) variable
15 interp = RemoteConsole(pipe, locals=__main__.__dict__)
H A Dremote_console.py15 def __init__(self, pipe, **kw):
16 self.pipe = pipe
22 return self.pipe.expect('RemoteConsole.raw_input', prompt)
25 return self.pipe.expect('RemoteConsole.write', msg)
34 return self.pipe.expect('RemoteConsole.displayhook', value)
37 return self.pipe.expect('RemoteConsole.excepthook', type, value, traceback)
64 sys.stdin = self.pipe.stdin
65 sys.stdout = self.pipe.stdout
66 sys.stderr = self.pipe
[all...]
/macosx-10.9.5/crontabs-51/periodic/
H A Dperiodic.sh41 /*) pipe="cat >>$output";;
42 "") pipe=cat;;
43 *) pipe="mail -E -s '$host ${arg##*/} run output' $output";;
111 } | eval $pipe
/macosx-10.9.5/postfix-252/postfix/src/master/
H A Dmaster_flow.c25 if (pipe(master_flow_pipe) < 0)
26 msg_fatal("%s: pipe: %m", myname);
/macosx-10.9.5/postfix-252/Postfix.Config/
H A Dmaster.cf.defaultserver49 # Many of the following services use the Postfix pipe(8) delivery
50 # agent. See the pipe(8) man page for information about ${recipient}
57 maildrop unix - n n - - pipe
62 old-cyrus unix - n n - - pipe
66 cyrus unix - n n - - pipe
71 uucp unix - n n - - pipe
76 ifmail unix - n n - - pipe
78 bsmtp unix - n n - - pipe

Completed in 292 milliseconds

1234567891011>>