HomeSort by relevance Sort by last modified time
    Searched refs:_Popen (Results 1 - 2 of 2) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
process.py 79 if p._popen.poll() is not None:
92 _Popen = None
102 self._popen = None
120 assert self._popen is None, 'cannot start a process twice'
126 if self._Popen is not None:
127 Popen = self._Popen
130 self._popen = Popen(self)
137 self._popen.terminate()
144 assert self._popen is not None, 'can only join a started process'
145 res = self._popen.wait(timeout
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
process.py 79 if p._popen.poll() is not None:
92 _Popen = None
102 self._popen = None
120 assert self._popen is None, 'cannot start a process twice'
126 if self._Popen is not None:
127 Popen = self._Popen
130 self._popen = Popen(self)
137 self._popen.terminate()
144 assert self._popen is not None, 'can only join a started process'
145 res = self._popen.wait(timeout
    [all...]

Completed in 68 milliseconds