Home
last modified time | relevance | path

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

12

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/PHP/
H A DDefault.php97 $pipes,
109 $this->process($pipes[0], $job);
111 fclose($pipes[0]);
115 unset($pipes[0]);
118 $r = $pipes;
146 unset($pipes[$pipeOffset]);
156 if (empty($pipes)) {
162 if (isset($pipes[1])) {
164 fclose($pipes[1]);
167 if (isset($pipes[2])) {
[all …]
/plugin/spellcheck/
H A Daspell.php241 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];
260 if ($r == $pipes[1]) {
262 if (feof($pipes[1])) {
263 fclose($pipes[1]);
266 } else if ($r == $pipes[2]) {
268 if (feof($pipes[2])) {
[all …]
/plugin/prolog/
H A 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/jplayer/vendor/symfony/process/Pipes/
H A 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 …]
H A 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;
H A DWindowsPipes.php47 $pipes = [
55 foreach ($pipes as $pipe => $name) {
177 return $this->pipes && $this->fileHandles;
/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[
[all...]
H A DUnixPipes.php17 * UnixPipes implementation uses unix pipes as handles.
108 $r = $this->pipes;
116 // otherwise, an error occurred, let's reset 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.php44 // Workaround for this problem is to use temporary files instead of pipes on Windows platform.
47 $pipes = [
55 foreach ($pipes as $pipe => $name) {
187 return $this->pipes && $this->fileHandles;
/plugin/swiftmail/Swift/Connection/
H A 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/
H A 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/findologicxmlexport/vendor/sebastian/environment/src/
H A DConsole.php61 $pipes,
68 $info = stream_get_contents($pipes[1]);
70 fclose($pipes[1]);
71 fclose($pipes[2]);
/plugin/findologicxmlexport/vendor/sebastian/version/src/
H A DVersion.php88 $pipes,
96 $result = trim(stream_get_contents($pipes[1]));
98 fclose($pipes[1]);
99 fclose($pipes[2]);
/plugin/rst/
H A 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/git/lib/
H A 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/gitbacked/lib/
H A DGit.php276 $pipes = array();
277 $resource = proc_open(Git::get_bin(), $descriptorspec, $pipes);
279 $stdout = stream_get_contents($pipes[1]);
280 $stderr = stream_get_contents($pipes[2]);
281 foreach ($pipes as $pipe) {
304 $pipes = array();
325 $resource = proc_open($command, $descriptorspec, $pipes, $cwd, $env);
327 $stdout = stream_get_contents($pipes[1]);
328 $stderr = stream_get_contents($pipes[2]);
329 foreach ($pipes as $pipe) {
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/
H A DTableParser.php
/plugin/mdpage/vendor/cebe/markdown/tests/extra-data/
H A 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/github-data/
H A Dnon-tables.md4 This line contains two pipes but is not a table. [[yii\widgets\DetailView|DetailView]] widget displ…
/plugin/shell/
H A DP0wnyShell.php79 $handle = proc_open($cmd, [0 => ['pipe', 'r'], 1 => ['pipe', 'w']], $pipes);
80 $output = stream_get_contents($pipes[1]);
/plugin/upgrade/vendor/splitbrain/php-cli/src/
H A DTableFormatter.php101 ), $pipes);
102 $width = (int)stream_get_contents($pipes[1]);
/plugin/eclipseupdateurl/
H A DREADME.md14 …mount of lines to show) or the following keywords and values separated by pipes (``|``) - ``%KEYWO…
/plugin/jplayer/vendor/symfony/process/
H A DProcess.php339 …$this->process = @proc_open($commandline, $descriptors, $this->processPipes->pipes, $this->cwd, $e…
347 $this->fallbackStatus['pid'] = (int) fgets($this->processPipes->pipes[3]);
1033 …/null', [['file', '/dev/tty', 'r'], ['file', '/dev/tty', 'w'], ['file', '/dev/tty', 'w']], $pipes);
1357 … return $result = (bool) @proc_open('echo 1 >/dev/null', [['pty'], ['pty'], ['pty']], $pipes);
1608 … } elseif ($ok = proc_open(sprintf('kill -%d %d', $signal, $pid), [2 => ['pipe', 'w']], $pipes)) {
1609 $ok = false === fgets($pipes[2]);
/plugin/combo/vendor/symfony/process/
H A DProcess.php173 * This allows using e.g. pipes or conditional execution. In this mode, signals are sent to the
352 $this->process = @proc_open($commandline, $descriptors, $this->processPipes->pipes, $this->cwd, $envPairs, $this->options);
360 $this->fallbackStatus['pid'] = (int) fgets($this->processPipes->pipes[3]);
1260 $isTtySupported = (bool) @proc_open('echo 1 >/dev/null', [['file', '/dev/tty', 'r'], ['file', '/dev/tty', 'w'], ['file', '/dev/tty', 'w']], $pipes);
1283 return $result = (bool) @proc_open('echo 1 >/dev/null', [['pty'], ['pty'], ['pty']], $pipes);
1335 * Updates the status of the process, reads pipes.
1381 * Reads pipes for the freshest output.
1418 * Reads pipes, executes callback.
1463 // Now pipes are closed, so the callback is no longer necessary
1522 } elseif ($ok = proc_open(sprintf('kill -%d %d', $signal, $pid), [2 => ['pipe', 'w']], $pipes)) {
[all...]
/plugin/diagramsnet/lib/js/socket.io/
H A Dsimplepeer9.10.0.min.js6pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,th…

12