Home
last modified time | relevance | path

Searched refs:CapturedStream (Results 1 – 1 of 1) sorted by relevance

/freebsd-13.1/contrib/googletest/googletest/src/
H A Dgtest-port.cc991 class CapturedStream { class
994 explicit CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { in CapturedStream() function in testing::internal::CapturedStream
1042 ~CapturedStream() { in ~CapturedStream()
1067 GTEST_DISALLOW_COPY_AND_ASSIGN_(CapturedStream);
1072 static CapturedStream* g_captured_stderr = NULL;
1073 static CapturedStream* g_captured_stdout = NULL;
1077 CapturedStream** stream) { in CaptureStream()
1082 *stream = new CapturedStream(fd); in CaptureStream()
1086 static std::string GetCapturedStream(CapturedStream** captured_stream) { in GetCapturedStream()