Searched refs:blocking (Results 1 – 5 of 5) sorted by relevance
/template/strap/vendor/symfony/process/Pipes/ |
D | PipesInterface.php | 40 * @param bool $blocking Whether to use blocking calls or not 45 public function readAndWrite(bool $blocking, bool $close = false): array; argument
|
D | UnixPipes.php | 102 public function readAndWrite(bool $blocking, bool $close = false): array argument 113 …if (($r || $w) && false === stream_select($r, $w, $e, 0, $blocking ? Process::TIMEOUT_PRECISION * …
|
D | WindowsPipes.php | 142 public function readAndWrite(bool $blocking, bool $close = false): array argument 148 if ($blocking) {
|
/template/strap/vendor/symfony/process/ |
D | Process.php | 632 $blocking = !(self::ITER_NON_BLOCKING & $flags); 665 if (!$blocking && !isset($out[0]) && !isset($err[0])) { 670 $this->readPipesForOutput(__FUNCTION__, $blocking); 1338 * @param bool $blocking Whether to use a blocking read call 1340 protected function updateStatus(bool $blocking) argument 1362 $this->readPipes($running && $blocking, '\\' !== \DIRECTORY_SEPARATOR || !$running); 1398 * @param bool $blocking Whether to use blocking calls or not 1402 private function readPipesForOutput(string $caller, bool $blocking = false) argument 1410 $this->updateStatus($blocking); 1434 * @param bool $blocking Whether to use blocking calls or not [all …]
|
D | CHANGELOG.md | 112 * added support for non-blocking processes (start(), wait(), isRunning(), stop())
|