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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
subprocess.py 112 call(*popenargs, **kwargs):
120 check_call(*popenargs, **kwargs):
130 check_output(*popenargs, **kwargs):
516 def call(*popenargs, **kwargs):
524 return Popen(*popenargs, **kwargs).wait()
527 def check_call(*popenargs, **kwargs):
537 retcode = call(*popenargs, **kwargs)
541 cmd = popenargs[0]
546 def check_output(*popenargs, **kwargs):
568 process = Popen(stdout=PIPE, *popenargs, **kwargs
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
subprocess.py 112 call(*popenargs, **kwargs):
120 check_call(*popenargs, **kwargs):
130 check_output(*popenargs, **kwargs):
516 def call(*popenargs, **kwargs):
524 return Popen(*popenargs, **kwargs).wait()
527 def check_call(*popenargs, **kwargs):
537 retcode = call(*popenargs, **kwargs)
541 cmd = popenargs[0]
546 def check_output(*popenargs, **kwargs):
568 process = Popen(stdout=PIPE, *popenargs, **kwargs
    [all...]
  /external/lldb/test/
lldbtest.py 236 def system(*popenargs, **kwargs):
262 process = Popen(stdout=PIPE, stderr=PIPE, *popenargs, **kwargs)
268 if isinstance(popenargs, types.StringTypes):
269 args = [popenargs]
271 args = list(popenargs)
283 cmd = popenargs[0]
    [all...]
  /frameworks/compile/libbcc/gdb_plugin/
android-commands.py 54 def check_output(*popenargs, **kwargs):
55 p = subprocess.Popen(stdout=subprocess.PIPE, stderr=subprocess.STDOUT, *popenargs, **kwargs)
61 c = popenargs[0]

Completed in 208 milliseconds