D | cmd_helper.py | 91 def Popen(args, stdout=None, stderr=None, shell=None, cwd=None, env=None): argument 102 shell=shell, close_fds=close_fds, env=env, preexec_fn=preexec_fn) 105 def Call(args, stdout=None, stderr=None, shell=None, cwd=None, env=None): argument 106 pipe = Popen(args, stdout=stdout, stderr=stderr, shell=shell, cwd=cwd, 128 def GetCmdOutput(args, cwd=None, shell=False, env=None): argument 144 (_, output) = GetCmdStatusAndOutput(args, cwd, shell, env) 148 def _ValidateAndLogCommand(args, cwd, shell): argument 150 if not shell: 153 if shell: 164 def GetCmdStatusAndOutput(args, cwd=None, shell=False, env=None): argument [all …]
|