D | cmd_helper.py | 97 def Popen(args, stdout=None, stderr=None, shell=None, cwd=None, env=None): argument 108 shell=shell, close_fds=close_fds, env=env, preexec_fn=preexec_fn) 111 def Call(args, stdout=None, stderr=None, shell=None, cwd=None, env=None): argument 112 pipe = Popen(args, stdout=stdout, stderr=stderr, shell=shell, cwd=cwd, 134 def GetCmdOutput(args, cwd=None, shell=False, env=None): argument 150 (_, output) = GetCmdStatusAndOutput(args, cwd, shell, env) 154 def _ValidateAndLogCommand(args, cwd, shell): argument 156 if not shell: 159 if shell: 170 def GetCmdStatusAndOutput(args, cwd=None, shell=False, env=None): argument [all …]
|