Home
last modified time | relevance | path

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

/template/strap/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;
/template/strap/vendor/symfony/process/
H A DProcess.php353 …$this->process = @proc_open($commandline, $descriptors, $this->processPipes->pipes, $this->cwd, $e…
361 $this->fallbackStatus['pid'] = (int) fgets($this->processPipes->pipes[3]);
1261 …/null', [['file', '/dev/tty', 'r'], ['file', '/dev/tty', 'w'], ['file', '/dev/tty', 'w']], $pipes);
1284 … return $result = (bool) @proc_open('echo 1 >/dev/null', [['pty'], ['pty'], ['pty']], $pipes);
1536 … } elseif ($ok = proc_open(sprintf('kill -%d %d', $signal, $pid), [2 => ['pipe', 'w']], $pipes)) {
1537 $ok = false === fgets($pipes[2]);