Home
last modified time | relevance | path

Searched refs:pipe (Results 1 – 25 of 45) sorted by relevance

12

/PHP-7.0/ext/standard/tests/streams/
H A Dproc_open_bug60120.phpt12 $descriptors = array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
19 foreach ($pipes as $pipe) {
20 stream_set_blocking($pipe, false);
51 foreach ($r as $pipe) {
52 $type = array_search($pipe, $pipes);
53 $data = fread($pipe, 8192);
55 if (false === $data || feof($pipe)) {
56 fclose($pipe);
H A Dproc_open_bug64438.phpt13 $descriptors = array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
19 foreach ($pipes as $pipe) {
20 stream_set_blocking($pipe, false);
51 foreach ($r as $pipe) {
52 $type = array_search($pipe, $pipes);
53 $data = fread($pipe, 8192);
55 if (false === $data || feof($pipe)) {
56 fclose($pipe);
H A Dbug61019.phpt9 0 => array("pipe", "r"), // stdin is a pipe that the child will read from
10 1 => array("pipe", "w"), // stdout is a pipe that the child will write to
11 2 => array("pipe", "w") // stderr is a pipe that the child will write to
H A Dbug46024.phpt11 ,array(0 => array('pipe', 'r'), 1 => array('pipe', 'w'))
32 foreach($pipes as $pipe) {
33 fclose($pipe);
H A Dbug64770.phpt7 0 => array('pipe', 'r'), // stdin
8 1 => array('pipe', 'w'), // stdout
9 2 => array('pipe', 'w'), // strerr
H A Dproc_open_bug51800.phpt15 The smaller the pipe buffer is, the longer it will take. It might even pass at the end,
17 so then the pipe buffer is emptied more often and the child has chance to continue its
31 0 => array("pipe", "rb"), // stdin
32 1 => array("pipe", "wb"), // stdout
33 2 => array("pipe", "wb") // stderr
H A Dbug60602.phpt7 0 => array('pipe', 'r'), // stdin
8 1 => array('pipe', 'w'), // stdout
9 2 => array('pipe', 'w'), // strerr
H A Dproc_open_bug51800_right.phpt15 0 => array("pipe", "rb"), // stdin
16 1 => array("pipe", "wb"), // stdout
17 2 => array("pipe", "wb") // stderr
H A Dproc_open_bug51800_right2.phpt15 0 => array("pipe", "rb"), // stdin
16 1 => array("pipe", "wb"), // stdout
17 2 => array("pipe", "wb") // stderr
H A Dproc_open_bug69900.phpt13 $in = fopen("php://stdin", "rb", false, stream_context_create(array("pipe" => array("blocking" => t…
23 $descriptorspec = array(0 => array("pipe", "r"),1 => array("pipe", "w"));
H A Dbug72853.phpt13 0 => array('pipe', 'r'), // stdin
14 1 => array('pipe', 'w'), // stdout
H A Dstream_socket_sendto.phpt30 Notice: fwrite(): send of %i bytes failed with errno=%i Broken pipe in %s on line %i
38 Warning: stream_socket_sendto(): Broken pipe
42 Warning: stream_socket_sendto(): Broken pipe
/PHP-7.0/ext/standard/tests/file/
H A Dbug60120.phpt23 $descriptors = array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
30 foreach ($pipes as $pipe) {
31 stream_set_blocking($pipe, false);
62 foreach ($r as $pipe) {
63 $type = array_search($pipe, $pipes);
64 $data = fread($pipe, 8192);
65 if (false === $data || feof($pipe)) {
66 fclose($pipe);
H A Dbug69442.phpt8 $descriptors = array(array("pty"), array("pty"), array("pty"), array("pipe", "w"));
26 $descriptors = array(array("pty"), array("pty"), array("pty"), array("pipe", "w"));
31 foreach ($pipes as $type => $pipe) {
32 $data = fread($pipe, 999);
35 fclose($pipe);
H A Dpopen_pclose_basic-win32.phpt20 echo "*** Testing popen(): reading from the pipe ***\n";
29 echo "*** Testing popen(): writing to the pipe ***\n";
63 *** Testing popen(): reading from the pipe ***
65 *** Testing popen(): writing to the pipe ***
H A Dpopen_pclose_basic.phpt24 echo "-- Testing popen(): reading from the pipe --\n";
44 echo "*** Testing popen(): writing to the pipe ***\n";
77 -- Testing popen(): reading from the pipe --
93 *** Testing popen(): writing to the pipe ***
H A Dproc_open01.phpt13 array(0 => array('pipe', 'r'), 1 => array('pipe', 'w')),
/PHP-7.0/ext/standard/tests/general_functions/
H A Dbug34794.phpt10 $process1 = proc_open('/bin/cat', array(0 => array('pipe', 'r'), 1 =>array('pipe', 'r')), $pipes1);
13 $process2 = proc_open('/bin/cat', array(0 => array('pipe', 'r'), 1 =>array('pipe', 'r')), $pipes2);
H A Dbug72306.phpt13 0 => array("pipe", "r"),
14 1 => array("pipe", "w"),
15 2 => array("pipe", "r")
H A Dproc_open.phpt11 0 => array("pipe", "r"),
12 1 => array("pipe", "w"),
13 2 => array("pipe", "w")
H A Dbug39322.phpt11 0 => array('pipe', 'r'),
12 1 => array('pipe', 'w'),
13 2 => array('pipe', 'w'));
H A Dbug44667.phpt11 0 => array('pipe', 'rb'),
12 1 => array('pipe', 'wb'),
/PHP-7.0/sapi/cli/tests/
H A Dbug74600.phpt17 0 => array("pipe", "r"),
18 1 => array("pipe", "w"),
19 2 => array("pipe", "w"),
H A D023.phpt25 0 => array("pipe", "r"),
26 1 => array("pipe", "w"),
27 2 => array("pipe", "w"),
/PHP-7.0/ext/openssl/tests/
H A Dstream_server_reneg_limit.phpt66 $descriptorSpec = [["pipe", "r"], ["pipe", "w"], ["pipe", "w"]];

Completed in 28 milliseconds

12