Lines Matching refs:int

139      * @param int|float|null $timeout The timeout in seconds or null to disable
186 * @param int|float|null $timeout The timeout in seconds or null to disable
240 * @return int The exit status code
250 public function run(callable $callback = null, array $env = []): int
360 $this->fallbackStatus['pid'] = (int) fgets($this->processPipes->pipes[3]);
409 * @return int The exitcode of the process
479 $this->fallbackStatus['exitcode'] = (int) $data;
496 * @return int|null The process id if running, null otherwise
506 * @param int $signal A valid POSIX signal (see https://php.net/pcntl.constants)
514 public function signal(int $signal)
618 * @param int $flags A bit field of Process::ITER_* flags
626 public function getIterator(int $flags = 0)
749 * @return int|null The exit status code, null if the Process is not terminated
809 * @return int
846 * @return int
912 * @param int|float $timeout The timeout in seconds
913 * @param int $signal A POSIX signal to send in case the process has not stop at timeout, default is SIGKILL (9)
915 * @return int|null The exit-code of the process or null if it's not running
917 public function stop(float $timeout = 10, int $signal = null)
1170 * @param string|int|float|bool|resource|\Traversable|null $input The content
1432 $this->fallbackStatus['exitcode'] = (int) $data;
1440 * @return int The exitcode
1442 private function close(): int
1491 * @param int $signal A valid POSIX signal (see https://php.net/pcntl.constants)
1498 private function doSignal(int $signal, bool $throwException): bool