Lines Matching refs:processInformation
66 private $processInformation;
440 if ($this->processInformation['signaled'] && $this->processInformation['termsig'] !== $this->latestSignal) {
500 return $this->isRunning() ? $this->processInformation['pid'] : null;
801 return $this->processInformation['signaled'];
818 if ($this->isSigchildEnabled() && -1 === $this->processInformation['termsig']) {
822 return $this->processInformation['termsig'];
838 return $this->processInformation['stopped'];
854 return $this->processInformation['stopsig'];
870 return $this->processInformation['running'];
1345 $this->processInformation = proc_get_status($this->process);
1346 $running = $this->processInformation['running'];
1351 $this->processInformation = $this->fallbackStatus + $this->processInformation;
1448 $this->exitcode = $this->processInformation['exitcode'];
1452 if ($this->processInformation['signaled'] && 0 < $this->processInformation['termsig']) {
1454 $this->exitcode = 128 + $this->processInformation['termsig'];
1456 $this->processInformation['signaled'] = true;
1457 $this->processInformation['termsig'] = -1;
1478 $this->processInformation = null;