Lines Matching refs:exitcode
64 private $exitcode;
409 * @return int The exitcode of the process
444 return $this->exitcode;
479 $this->fallbackStatus['exitcode'] = (int) $data;
755 return $this->exitcode;
771 if (null === $exitcode = $this->getExitCode()) {
775 return self::$exitCodes[$exitcode] ?? 'Unknown error';
943 return $this->exitcode;
1432 $this->fallbackStatus['exitcode'] = (int) $data;
1438 * Closes process resource, closes file handles, sets the exitcode.
1440 * @return int The exitcode
1448 $this->exitcode = $this->processInformation['exitcode'];
1451 if (-1 === $this->exitcode) {
1453 // if process has been signaled, no exitcode but a valid termsig, apply Unix convention
1454 $this->exitcode = 128 + $this->processInformation['termsig'];
1466 return $this->exitcode;
1476 $this->exitcode = null;
1536 $this->fallbackStatus['exitcode'] = -1;