Lines Matching refs:pipes
14 $process=proc_open("echo testtext",$descriptorspec,$pipes);
17 stream_set_blocking($pipes[0],false);
18 stream_set_blocking($pipes[1],false);
19 stream_set_blocking($pipes[2],false);
20 stream_set_write_buffer($pipes[0],0);
21 stream_set_read_buffer($pipes[1],0);
22 stream_set_read_buffer($pipes[2],0);
30 $tmp_stdin=stream_get_contents($pipes[1]);
35 $tmp_stderr=stream_get_contents($pipes[2]);
45 $tmp_stdin=stream_get_contents($pipes[1]);
50 $tmp_stderr=stream_get_contents($pipes[2]);
56 fclose ($pipes[0]);
57 fclose ($pipes[1]);
58 fclose ($pipes[2]);