Lines Matching refs:processInformation
64 private $processInformation; variable in Symfony\\Component\\Process\\Process
428 …if ($this->processInformation['signaled'] && $this->processInformation['termsig'] !== $this->lates…
429 …(sprintf('The process has been signaled with signal "%s".', $this->processInformation['termsig']));
442 return $this->isRunning() ? $this->processInformation['pid'] : null;
753 return $this->processInformation['signaled'];
770 …nabled() && (!$this->enhanceSigchildCompatibility || -1 === $this->processInformation['termsig']))…
774 return $this->processInformation['termsig'];
790 return $this->processInformation['stopped'];
806 return $this->processInformation['stopsig'];
822 return $this->processInformation['running'];
1425 $this->processInformation = proc_get_status($this->process);
1426 $running = $this->processInformation['running'];
1431 $this->processInformation = $this->fallbackStatus + $this->processInformation;
1532 $this->exitcode = $this->processInformation['exitcode'];
1536 if ($this->processInformation['signaled'] && 0 < $this->processInformation['termsig']) {
1538 $this->exitcode = 128 + $this->processInformation['termsig'];
1540 $this->processInformation['signaled'] = true;
1541 $this->processInformation['termsig'] = -1;
1562 $this->processInformation = null;