Lines Matching refs:processPipes
80 private $processPipes;
216 $this->processPipes->close();
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]);
422 if (!$this->processPipes->haveReadSupport()) {
431 $running = '\\' === \DIRECTORY_SEPARATOR ? $this->isRunning() : $this->processPipes->areOpen();
463 if (!$this->processPipes->haveReadSupport()) {
472 $running = '\\' === \DIRECTORY_SEPARATOR ? $this->isRunning() : $this->processPipes->areOpen();
473 $output = $this->processPipes->readAndWrite($running, '\\' !== \DIRECTORY_SEPARATOR || !$running);
1295 $this->processPipes = new WindowsPipes($this->input, !$this->outputDisabled || $this->hasCallback);
1297 $this->processPipes = new UnixPipes($this->isTty(), $this->isPty(), $this->input, !$this->outputDisabled || $this->hasCallback);
1300 return $this->processPipes->getDescriptors();
1425 $result = $this->processPipes->readAndWrite($blocking, $close);
1444 $this->processPipes->close();
1581 foreach ($this->processPipes->getFiles() as $offset => $filename) {