Lines Matching refs:stdout
38 sys.stdout.flush()
41 # Manually read and print out stdout and stderr.
47 # TODO(erikkay): should we buffer stderr and stdout separately?
50 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
58 # Have to use readline rather than readlines() or "for line in p.stdout:",
60 line = p.stdout.readline()
62 sys.stdout.write(line)
63 sys.stdout.flush()
64 line = p.stdout.readline()
86 for line in p.stdout:
87 sys.stdout.write(line)
88 if not IsMac(): # stdout flush fails on Mac
89 logging.info("flushing stdout")
90 sys.stdout.flush()
222 stdout=subprocess.PIPE,
251 sys.stdout.flush()