Lines Matching refs:env
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 …checkCommand = None, timeout = 600.0, log = None, lineLimit = 0, cwd=None, env=None, logOutputflg … argument
213 …nd=checkCommand, timeout=timeout, log=log, lineLimit=lineLimit, cwd=cwd, env=env, logOutputflg = l…
216 …checkCommand = None, timeout = 600.0, log = None, lineLimit = 0, cwd=None, env=None, logOutputflg … 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)