Lines Matching refs:stdout
83 return '<stdout>'
499 stdin, stdout, stderr, bufsize,
1618 def _log_subprocess(self, msg, stdin, stdout, stderr):
1622 if stdout is not None and stderr == subprocess.STDOUT:
1623 info.append(f'stdout=stderr={_format_pipe(stdout)}')
1625 if stdout is not None:
1626 info.append(f'stdout={_format_pipe(stdout)}')
1633 stdout=subprocess.PIPE,
1660 self._log_subprocess(debug_log, stdin, stdout, stderr)
1662 protocol, cmd, True, stdin, stdout, stderr, bufsize, **kwargs)
1668 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
1693 self._log_subprocess(debug_log, stdin, stdout, stderr)
1695 protocol, popen_args, False, stdin, stdout, stderr,