Home | History | Annotate | Download | only in multiprocessing

Lines Matching refs:_subprocess

187     import _subprocess
232 target_process = _subprocess.GetCurrentProcess()
233 return _subprocess.DuplicateHandle(
234 _subprocess.GetCurrentProcess(), handle, target_process,
235 0, inheritable, _subprocess.DUPLICATE_SAME_ACCESS
260 hp, ht, pid, tid = _subprocess.CreateProcess(
293 msecs = _subprocess.INFINITE
297 res = _subprocess.WaitForSingleObject(int(self._handle), msecs)
298 if res == _subprocess.WAIT_OBJECT_0:
299 code = _subprocess.GetExitCodeProcess(self._handle)
312 _subprocess.TerminateProcess(int(self._handle), TERMINATE)