Home
last modified time | relevance | path

Searched refs:pipes (Results 26 – 50 of 56) sorted by relevance

123

/PHP-7.4/ext/standard/tests/general_functions/
H A Dproc_open-mb1.phpt25 $pipes
30 while (!feof($pipes[1])) {
31 $out .= fread($pipes[1], 1024);
H A Dproc_open-mb0.phpt25 $pipes,
33 while (!feof($pipes[1])) {
34 $out .= fread($pipes[1], 1024);
H A Dbug72306.phpt11 $pipes = array();
18 $process = proc_open('nothing', $description, $pipes, NULL, $env);
H A Dbug78569.phpt15 $proc = proc_open($cmd, $descriptorspec, $pipes);
16 fpassthru($pipes[1]);
H A Dproc_open_pipes1.phpt2 proc_open() with > 16 pipes
12 proc_open("$php -n $callee", $spec, $pipes);
15 var_dump($pipes);
H A Dbug39322.phpt15 $pipes = array();
17 $process = proc_open('/bin/sleep 120', $descriptors, $pipes);
H A Dproc_open.phpt19 $pipes
H A Dproc_open02.phpt15 $pipes
/PHP-7.4/ext/standard/tests/streams/
H A Dbug60602.phpt15 $p = proc_open($cmd, $descs, $pipes, '.', $environment);
22 $n = stream_select($pipes, $w, $e, 300);
32 $line = fread($pipes[1], 8192);
/PHP-7.4/ext/pdo_firebird/tests/
H A Dpayload_server.inc10 $proc = proc_open($cmd, $descriptorspec, $pipes);
14 stream_set_blocking($pipes[2], false);
23 while (($line = fgets($pipes[2])) !== false) {
28 fclose($pipes[2]);
/PHP-7.4/ext/standard/tests/file/
H A Dbug72035.phpt25 $proc = proc_open($cmd, $desc, $pipes, getcwd(), array());
27 echo stream_get_contents($pipes[0]);
/PHP-7.4/sapi/cli/tests/
H A D022.phpt26 $pipes = array();
27 $proc = proc_open("$php -n " . escapeshellarg($test_file), $desc, $pipes);
H A Dstd_streams.phpt14 // These have proc_open pipes attached
H A Dsapi_windows_set_ctrl_handler.phpt30 …$proc = proc_open($cmd, $spec, $pipes, NULL, NULL, ["bypass_shell" => true, "create_process_group"…
59 foreach ($pipes as $pipe) {
H A Dphp_cli_server.inc29 …$handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root, null, array("suppress_errors" => tru…
/PHP-7.4/ext/standard/
H A Dproc_open.h44 zend_resource **pipes; member
H A Dproc_open.c180 if (proc->pipes[i] != 0) { in proc_open_rsrc_dtor()
181 GC_DELREF(proc->pipes[i]); in proc_open_rsrc_dtor()
182 zend_list_close(proc->pipes[i]); in proc_open_rsrc_dtor()
183 proc->pipes[i] = 0; in proc_open_rsrc_dtor()
220 pefree(proc->pipes, proc->is_persistent); in proc_open_rsrc_dtor()
481 zval *pipes; in PHP_FUNCTION() local
522 Z_PARAM_ZVAL(pipes) in PHP_FUNCTION()
1088 pipes = zend_try_array_init(pipes); in PHP_FUNCTION()
1089 if (!pipes) { in PHP_FUNCTION()
1160 proc->pipes[i] = Z_RES(retfp); in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/openssl/tests/
H A DServerClientTestCase.inc85 $pipes
87 $this->workerStdIn[$worker] = $pipes[0];
88 $this->workerStdOut[$worker] = $pipes[1];
H A Dstream_server_reneg_limit.phpt75 $process = proc_open($cmd, $descriptorSpec, $pipes);
77 list($stdin, $stdout, $stderr) = $pipes;
/PHP-7.4/ext/opcache/tests/
H A Dphp_cli_server.inc20 …$handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root, null, array("suppress_errors" => tru…
/PHP-7.4/ext/curl/tests/
H A Dserver.inc21 …$handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root, null, array("suppress_errors" => tru…
/PHP-7.4/win32/build/
H A Dmkdist.php79 $pipes);
82 while (($line = fgetcsv($pipes[1]))) {
126 fclose($pipes[1]);
/PHP-7.4/
H A Drun-tests.php1222 …$proc = proc_open($commandline, $descriptorspec, $pipes, TEST_PHP_SRCDIR, $bin_env, array('suppres…
1230 fwrite($pipes[0], $stdin);
1232 fclose($pipes[0]);
1233 unset($pipes[0]);
1240 $r = $pipes;
1255 $line = fread($pipes[1], 8192);
1257 $line = fread($pipes[2], 8192);
1423 $pipes,
H A DUPGRADING371 proc_open(['php', '-r', 'echo "Hello World\n";'], $descriptors, $pipes);
376 proc_open($cmd, [1 => ['pipe', 'w'], 2 => ['redirect', 1]], $pipes);
378 proc_open($cmd, [1 => ['pipe', 'w'], 2 => ['null']], $pipes);
/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitNativeTILEGX_64.c519 …for (pipe = 0; ((opcode->pipes & (1 << pipe)) == 0 && pipe < TILEGX_NUM_PIPELINE_ENCODINGS); pipe+… in get_any_valid_pipe()
542 inst_buf[0].opcode->pipes, in compute_format()
543 inst_buf[1].opcode->pipes, in compute_format()
544 (inst_buf_index == 3 ? inst_buf[2].opcode->pipes : (1 << NO_PIPELINE))); in compute_format()

Completed in 68 milliseconds

123