Home
last modified time | relevance | path

Searched refs:blocking (Results 1 – 5 of 5) sorted by relevance

/template/strap/vendor/symfony/process/Pipes/
DPipesInterface.php40 * @param bool $blocking Whether to use blocking calls or not
45 public function readAndWrite(bool $blocking, bool $close = false): array; argument
DUnixPipes.php102 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 * …
DWindowsPipes.php142 public function readAndWrite(bool $blocking, bool $close = false): array argument
148 if ($blocking) {
/template/strap/vendor/symfony/process/
DProcess.php632 $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 …]
DCHANGELOG.md112 * added support for non-blocking processes (start(), wait(), isRunning(), stop())