Lines Matching refs:output
151 (output, stderr_output) = proc.communicate(timeout=timeout)
158 (output, stderr_output) = proc.communicate()
160 return (output, stderr_output, retcode)
163 def _LogCmdOutput(logfile, cmd, output, retcode): argument
173 CommandListToCommandString(cmd), output, retcode))
339 (output, err_output, retcode) = RunCommandForOutput(
343 output += err_output
344 _LogCmdOutput(self._logfile, cmd, output, retcode)
345 return (output, retcode)
450 (output, _, retcode) = RunCommandForOutput(cmd, self._shell_env, PIPE,
456 end_of_first_line = output.find('\n')
458 parent_pid = output[:end_of_first_line]
459 output = output[end_of_first_line + 1:]
472 output += line
473 _LogCmdOutput(self._logfile, cmd, output, retcode)
474 return (output, retcode)