Lines Matching full:_proc
21 self._proc = None
36 # Create the child process: set the _proc attribute
44 self._pid = self._proc.pid
45 self._extra['subprocess'] = self._proc
108 if (self._proc is not None
112 and self._proc.poll() is None
118 self._proc.kill()
122 # Don't clear the _proc reference yet: _post_init() may still run
147 if self._proc is None:
152 self._proc.send_signal(signal)
156 self._proc.terminate()
160 self._proc.kill()
165 proc = self._proc
219 if self._proc.returncode is None:
222 self._proc.returncode = returncode
258 self._proc = None