Lines Matching refs:cwd
160 def runShellCommand(command, log=None, cwd=None, env=None): argument
161 return Script.runShellCommandSeq([command], log=log, cwd=cwd, env=env)
164 def runShellCommandSeq(commandseq, log=None, cwd=None, env=None): argument
174 pipe = Popen(command, cwd=cwd, env=env, stdin=None, stdout=PIPE, stderr=PIPE,
209 …(command, checkCommand = None, timeout = 600.0, log = None, lineLimit = 0, cwd=None, env=None, log… argument
213 …heckCommand=checkCommand, timeout=timeout, log=log, lineLimit=lineLimit, cwd=cwd, env=env, logOutp…
216 …mmandseq, checkCommand = None, timeout = 600.0, log = None, lineLimit = 0, cwd=None, env=None, log… argument
236 def runInShell(commandseq, log, cwd, env): argument
247 … (self.output, self.error, self.status) = Script.runShellCommandSeq(commandseq, log, cwd, env)
258 return Script.runShellCommandSeq(commandseq, log, cwd, env)
260 (output, error, status) = runInShell(commandseq, log, cwd, env)