Home
last modified time | relevance | path

Searched refs:pipes (Results 1 – 25 of 47) sorted by relevance

12

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/PHP/
DDefault.php97 $pipes,
109 $this->process($pipes[0], $job);
111 fclose($pipes[0]);
115 unset($pipes[0]);
118 $r = $pipes;
132 foreach ($pipes as $i => $origPipe) {
145 fclose($pipes[$pipeOffset]);
146 unset($pipes[$pipeOffset]);
156 if (empty($pipes)) {
162 if (isset($pipes[1])) {
[all …]
/plugin/spellcheck/
Daspell.php232 $process = proc_open($command, $descriptorSpec, $pipes);
240 stream_set_blocking($pipes[0], 0); // Make stdin/stdout/stderr non-blocking
241 stream_set_blocking($pipes[1], 0);
242 stream_set_blocking($pipes[2], 0);
244 if ($txLen == 0) fclose($pipes[0]);
247 if (!$stdoutDone) $rx[] = $pipes[1];
248 if (!$stderrDone) $rx[] = $pipes[2];
250 if ($txOff < $txLen) $tx[] = $pipes[0];
254 $txRet = fwrite($pipes[0], substr($stdin, $txOff, 8192));
256 if ($txOff >= $txLen) fclose($pipes[0]);
[all …]
/plugin/prolog/
Dprolog_tag.php114 $process = proc_open('pl', $descriptorspec, $pipes);
117 fwrite($pipes[0], '[\''.substr($stdin, 0, -3).'\'].');
118 fclose($pipes[0]);
131 fclose($pipes[1]); //stdout
132 fclose($pipes[2]); //stderr
139 $executed[0] = stream_get_contents($pipes[1]);
140 $executed[1] = stream_get_contents($pipes[2]);
141 fclose($pipes[1]); //stdout
142 fclose($pipes[2]); //stderr
145 fclose($pipes[1]); //stdout
[all …]
/plugin/combo/vendor/symfony/process/Pipes/
H A DAbstractPipes.php23 public $pipes = []; variable in Symfony\\Component\\Process\\Pipes\\AbstractPipes
49 foreach ($this->pipes as $pipe) {
54 $this->pipes = [];
78 foreach ($this->pipes as $pipe) {
95 if (!isset($this->pipes[0])) {
121 $w = [$this->pipes[0]];
133 return [$this->pipes[0]];
148 return [$this->pipes[0]];
164 fclose($this->pipes[0]);
165 unset($this->pipes[0]);
[all …]
H A DUnixPipes.php108 $r = $this->pipes;
118 $this->pipes = [];
128 $read[$type = array_search($pipe, $this->pipes, true)] = '';
141 unset($this->pipes[$type]);
161 return (bool) $this->pipes;
H A DWindowsPipes.php47 $pipes = [
55 foreach ($pipes as $pipe => $name) {
187 return $this->pipes && $this->fileHandles;
/plugin/jplayer/vendor/symfony/process/Pipes/
DAbstractPipes.php23 public $pipes = []; variable in Symfony\\Component\\Process\\Pipes\\AbstractPipes
49 foreach ($this->pipes as $pipe) {
52 $this->pipes = [];
78 foreach ($this->pipes as $pipe) {
97 if (!isset($this->pipes[0])) {
123 $w = [$this->pipes[0]];
135 return [$this->pipes[0]];
150 return [$this->pipes[0]];
166 fclose($this->pipes[0]);
167 unset($this->pipes[0]);
[all …]
DUnixPipes.php98 $r = $this->pipes;
108 $this->pipes = [];
118 $read[$type = array_search($pipe, $this->pipes, true)] = '';
131 unset($this->pipes[$type]);
151 return (bool) $this->pipes;
DWindowsPipes.php47 $pipes = [
55 foreach ($pipes as $pipe => $name) {
177 return $this->pipes && $this->fileHandles;
/plugin/swiftmail/Swift/Connection/
DSendmail.php50 protected $pipes; variable in Swift_Connection_Sendmail
195 …if (!@fwrite($this->pipes[0], $command . $end) && !empty($command)) throw new Swift_ConnectionExc…
196 fflush($this->pipes[0]);
212 stream_set_timeout($this->pipes[1], $this->timeout);
213 $tmp = @fgets($this->pipes[1]);
221 fflush($this->pipes[1]);
302 $this->proc = proc_open($this->getCommand(), $pipes_spec, $this->pipes);
320 foreach ((array)$this->pipes as $pipe)
328 $this->pipes = null;
340 && is_resource($this->pipes[0])
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
DProcessHandler.php49 private $pipes = []; variable in Monolog\\Handler\\ProcessHandler
116 … $this->process = proc_open($this->command, static::DESCRIPTOR_SPEC, $this->pipes, $this->cwd);
118 foreach ($this->pipes as $pipe) {
152 $errorPipes = [$this->pipes[2]];
165 return (string) stream_get_contents($this->pipes[2]);
175 fwrite($this->pipes[0], $string);
184 foreach ($this->pipes as $pipe) {
/plugin/asciidocjs/
Dsyntax.php87 $process = proc_open($CMD, $descriptorspec, $pipes, $cwd, $env);
94 fwrite($pipes[0],$ascdoc);
95 fclose($pipes[0]);
97 $html=stream_get_contents($pipes[1]);
98 fclose($pipes[1]);
100 $error=stream_get_contents($pipes[2]);
101 fclose($pipes[2]);
/plugin/mizarverifiabledocs/
H A Daction.php154 $proc = proc_open($cmd, $des, $pipes, $cwd); // shell経由(bypass_shell=false)
157 $proc = proc_open($cmd, $des, $pipes, $cwd, null, ['bypass_shell' => true]);
161 return [$proc, $pipes];
352 [$proc, $pipes] = $this->openProcess($exe, [$filePath], $workPath);
355 …while (($line = fgets($pipes[1])) !== false) { echo "data: " . $this->outUTF8($line) . "\n\n"; @ob…
356 fclose($pipes[1]);
357 …while (($line = fgets($pipes[2])) !== false) { echo "data: ERROR: " . $this->outUTF8($line) . "\n\…
358 fclose($pipes[2]);
375 [$proc, $pipes] = $this->openProcess($makeenv, [$filePath], $workPath);
377 …while (($line = fgets($pipes[1])) !== false) { echo "data: " . $this->outUTF8($line) . "\n\n"; @ob…
[all …]
/plugin/gitbacked/classes/
DGitBackedUtil.php141 $pipes = [];
146 $resource = proc_open($command, $descriptorspec, $pipes, $path);
147 $stdout = stream_get_contents($pipes[1]);
148 stream_get_contents($pipes[2]);
149 foreach ($pipes as $pipe) {
DGitRepo.php191 $pipes = [];
192 $resource = proc_open(Git::getBin(), $descriptorspec, $pipes);
194 stream_get_contents($pipes[1]);
195 stream_get_contents($pipes[2]);
196 foreach ($pipes as $pipe) {
217 $pipes = [];
231 $resource = proc_open($command, $descriptorspec, $pipes, $cwd, null);
233 $stdout = stream_get_contents($pipes[1]);
234 $stderr = stream_get_contents($pipes[2]);
235 foreach ($pipes as $pipe) {
/plugin/findologicxmlexport/vendor/sebastian/environment/src/
DConsole.php61 $pipes,
68 $info = stream_get_contents($pipes[1]);
70 fclose($pipes[1]);
71 fclose($pipes[2]);
/plugin/git/lib/
DGit.php199 $pipes = array();
200 $resource = proc_open($this->git_path, $descriptorspec, $pipes);
202 $stdout = stream_get_contents($pipes[1]);
203 $stderr = stream_get_contents($pipes[2]);
204 foreach ($pipes as $pipe) {
227 $pipes = array();
228 $resource = proc_open($command, $descriptorspec, $pipes, $this->repo_path);
230 $stdout = stream_get_contents($pipes[1]);
231 $stderr = stream_get_contents($pipes[2]);
232 foreach ($pipes as $pipe) {
/plugin/findologicxmlexport/vendor/sebastian/version/src/
DVersion.php88 $pipes,
96 $result = trim(stream_get_contents($pipes[1]));
98 fclose($pipes[1]);
99 fclose($pipes[2]);
/plugin/rst/
Dsyntax.php58 $process = proc_open('rst2html --no-doc-title', $descriptorspec, $pipes, $cwd, $env);
66 fwrite($pipes[0], $data[0]);
67 fclose($pipes[0]);
69 $output = stream_get_contents($pipes[1]);
70 fclose($pipes[1]);
/plugin/mizarproofchecker/
Daction.php191 $process = proc_open($command, array(1 => array("pipe", "w")), $pipes);
194 while ($line = fgets($pipes[1])) {
199 fclose($pipes[1]);
284 … $process = proc_open($command, array(1 => array("pipe", "w"), 2 => array("pipe", "w")), $pipes);
287 while ($line = fgets($pipes[1])) {
292 fclose($pipes[1]);
294 while ($line = fgets($pipes[2])) {
299 fclose($pipes[2]);
/plugin/mizarveifiabledocs/
Daction.php191 $process = proc_open($command, array(1 => array("pipe", "w")), $pipes);
194 while ($line = fgets($pipes[1])) {
199 fclose($pipes[1]);
284 … $process = proc_open($command, array(1 => array("pipe", "w"), 2 => array("pipe", "w")), $pipes);
287 while ($line = fgets($pipes[1])) {
292 fclose($pipes[1]);
294 while ($line = fgets($pipes[2])) {
299 fclose($pipes[2]);
/plugin/shell/
DP0wnyShell.php79 $handle = proc_open($cmd, [0 => ['pipe', 'r'], 1 => ['pipe', 'w']], $pipes);
80 $output = stream_get_contents($pipes[1]);
/plugin/mdpage/vendor/cebe/markdown/tests/github-data/
Dnon-tables.md4 This line contains two pipes but is not a table. [[yii\widgets\DetailView|DetailView]] widget displ…
/plugin/mdpage/vendor/cebe/markdown/tests/extra-data/
Dnon-tables.md4 This line contains two pipes but is not a table. [[yii\widgets\DetailView|DetailView]] widget displ…
/plugin/upgrade/myvendor/splitbrain/php-cli/src/
DTableFormatter.php101 ), $pipes);
102 $width = (int)stream_get_contents($pipes[1]);

12