HomeSort by relevance Sort by last modified time
    Searched full:_popen (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/python/cpython3/Lib/multiprocessing/
process.py 55 if p._popen.poll() is not None:
68 def _Popen(self):
78 self._popen = None
99 assert self._popen is None, 'cannot start a process twice'
105 self._popen = self._Popen(self)
106 self._sentinel = self._popen.sentinel
113 self._popen.terminate()
120 assert self._popen is not None, 'can only join a started process'
121 res = self._popen.wait(timeout
    [all...]
context.py 222 def _Popen(process_obj):
223 return _default_context.get_context().Process._Popen(process_obj)
275 def _Popen(process_obj):
282 def _Popen(process_obj):
289 def _Popen(process_obj):
320 def _Popen(process_obj):
util.py 307 p._popen.terminate()
  /external/python/cpython2/Lib/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...]
util.py 321 p._popen.terminate()
  /prebuilts/gdb/darwin-x86/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...]
util.py 315 p._popen.terminate()
  /prebuilts/gdb/linux-x86/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...]
util.py 315 p._popen.terminate()
  /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...]
util.py 315 p._popen.terminate()
  /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...]
util.py 315 p._popen.terminate()
  /external/e2fsprogs/include/nonunix/
unistd.h 15 #define popen _popen
  /bionic/libc/upstream-netbsd/lib/libc/gen/
popen.c 63 __weak_alias(popen,_popen)
  /external/ImageMagick/MagickCore/
nt-base.h 209 # define popen _popen
  /external/python/cpython2/Lib/
uuid.py 296 def _popen(command, args): function
316 pipe = _popen(command, args)
367 pipe = _popen('netstat', '-ia')
platform.py 367 class _popen: class in inherits:
426 # over os.popen over _popen
446 popen = _popen
448 popen = _popen
    [all...]
  /external/python/cpython3/Lib/
uuid.py 305 def _popen(command, *args): function
326 proc = _popen(command, *args.split())
384 proc = _popen('netstat', '-ia')
  /tools/repohooks/rh/
utils.py 211 class _Popen(subprocess.Popen):
394 proc = _Popen(cmd, cwd=cwd, stdin=stdin, stdout=stdout,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
platform.py 365 class _popen: class in inherits:
424 # over os.popen over _popen
444 popen = _popen
446 popen = _popen
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
platform.py 365 class _popen: class in inherits:
424 # over os.popen over _popen
444 popen = _popen
446 popen = _popen
    [all...]
  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/
namespace.h 446 #define popen _popen
  /prebuilts/gdb/darwin-x86/lib/python2.7/
platform.py 365 class _popen: class in inherits:
424 # over os.popen over _popen
444 popen = _popen
446 popen = _popen
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
platform.py 365 class _popen: class in inherits:
424 # over os.popen over _popen
444 popen = _popen
446 popen = _popen
    [all...]

Completed in 608 milliseconds

1 2 3