Lines Matching defs:bool
458 public function waitUntil(callable $callback): bool
564 * @return bool
781 * @return bool
793 * @return bool
830 * @return bool
860 * @return bool
876 * @return bool
886 * @return bool
1056 public function setTty(bool $tty)
1074 * @return bool
1086 public function setPty(bool $bool)
1088 $this->pty = $bool;
1096 * @return bool
1170 * @param string|int|float|bool|resource|\Traversable|null $input The content
1255 public static function isTtySupported(): bool
1260 $isTtySupported = (bool) @proc_open('echo 1 >/dev/null', [['file', '/dev/tty', 'r'], ['file', '/dev/tty', 'w'], ['file', '/dev/tty', 'w']], $pipes);
1269 * @return bool
1283 return $result = (bool) @proc_open('echo 1 >/dev/null', [['pty'], ['pty'], ['pty']], $pipes);
1316 return function ($type, $data) use ($callback): bool {
1323 return function ($type, $data) use ($callback, $out): bool {
1337 * @param bool $blocking Whether to use a blocking read call
1339 protected function updateStatus(bool $blocking)
1362 * @return bool
1384 * @param bool $blocking Whether to use blocking calls or not
1388 private function readPipesForOutput(string $caller, bool $blocking = false)
1420 * @param bool $blocking Whether to use blocking calls or not
1421 * @param bool $close Whether to close file handles or not
1423 private function readPipes(bool $blocking, bool $close)
1492 * @param bool $throwException Whether to throw exception in case signal failed
1498 private function doSignal(int $signal, bool $throwException): bool