Lines Matching refs:stream
1052 // Object that captures an output stream (stdout/stderr).
1055 // The ctor redirects the stream to a temporary file.
1144 // Restores the original stream.
1154 << " for capturing stream.";
1162 const int fd_; // A stream to capture.
1176 // Starts capturing an output stream (stdout/stderr).
1178 CapturedStream** stream) {
1179 if (*stream != nullptr) {
1183 *stream = new CapturedStream(fd);
1186 // Stops capturing the output stream and returns the captured string.