Lines Matching refs:output
159 (output, stderr_output) = proc.communicate(timeout=timeout)
166 (output, stderr_output) = proc.communicate()
168 return (output, stderr_output, retcode)
171 def _LogCmdOutput(logfile, cmd, output, retcode): argument
181 CommandListToCommandString(cmd), output, retcode))
341 (output, err_output, retcode) = RunCommandForOutput(
345 output += err_output
346 _LogCmdOutput(self._logfile, cmd, output, retcode)
347 return (output, retcode)
452 (output, _, retcode) = RunCommandForOutput(cmd, self._shell_env, PIPE,
458 end_of_first_line = output.find('\n')
460 parent_pid = output[:end_of_first_line]
461 output = output[end_of_first_line + 1:]
474 output += line
475 _LogCmdOutput(self._logfile, cmd, output, retcode)
476 return (output, retcode)