Home | History | Annotate | Download | only in common_lib

Lines Matching refs:stdout_tee

123     def __init__(self, command, stdout_tee=None, stderr_tee=None, verbose=True,
142 @param stdout_tee: (Optional) a file like object, TEE_TO_LOGS or
156 string (unlike the case where stdout_tee is not
158 @param stderr_tee: Same as stdout_tee, but for stderr.
162 @param stdout_level: A logging level value. If stdout_tee was set to
177 Also, |stdout_tee| and |stderr_tee| must be set to
186 if (unjoinable and (stdout_tee != DEVNULL or stderr_tee != DEVNULL)):
188 'stdout_tee and stderr_tee must be DEVNULL for '
191 stdout_tee, stdout_level,
227 stdout=devnull if stdout_tee == DEVNULL else subprocess.PIPE,
235 None if stdout_tee == DEVNULL else StringIO.StringIO())
287 Flush the stdout_tee and stderr_tee buffers, close the
671 def run(command, timeout=None, ignore_status=False, stdout_tee=None,
684 @param stdout_tee: optional file-like object to which stdout data
693 @param stdout_level: logging level used if stdout_tee is TEE_TO_LOGS;
737 (BgJob(command, stdout_tee, stderr_tee, verbose, stdin=stdin,
754 stdout_tee=None, stderr_tee=None,
767 bg_jobs.append(BgJob(command, stdout_tee, stderr_tee,
1019 stdout_tee=TEE_TO_LOGS, stderr_tee=TEE_TO_LOGS).exit_status
1027 stdout_tee=TEE_TO_LOGS, stderr_tee=TEE_TO_LOGS)]
1052 stdout_tee=TEE_TO_LOGS, stderr_tee=TEE_TO_LOGS,
1068 stdout_tee=TEE_TO_LOGS, stderr_tee=TEE_TO_LOGS)]
1888 stdout_tee=TEE_TO_LOGS,
2054 stdout_tee=ftrace, stderr_tee=ftrace)
2059 stdout_tee=ftrace, stderr_tee=ftrace)