Searched refs:stream (Results 26 - 50 of 56) sorted by relevance

123

/gem5/src/cpu/simple/probes/
H A Dsimpoint.cc130 *simpointStream->stream() << "T";
133 *simpointStream->stream() << ":" << cnt_itr->first
136 *simpointStream->stream() << "\n";
/gem5/src/base/
H A Dtrace.hh100 std::ostream &stream; member in class:Trace::OstreamLogger
103 OstreamLogger(std::ostream &stream_) : stream(stream_)
109 std::ostream &getOstream() override { return stream; }
H A Doutput.hh63 /** Get the output underlying output stream */
64 std::ostream *stream() const { return _stream; }; function in class:OutputStream
80 /** Wrap an existing stream */
82 std::ostream *stream);
93 /** Underlying output stream */
134 /** Pointer to the file stream */
142 /** File names and associated stream handles */
169 * @return output stream for standard output or error stream if name
209 * Will open a file as a compressed stream i
[all...]
H A Doutput.cc68 OutputStream::OutputStream(const std::string &name, std::ostream *stream) argument
69 : _name(name), _stream(stream)
152 fatal("Attempted to close an unregistred file stream");
228 // Although we are creating an output stream, we still need to pass the
H A Dinet.hh124 std::ostream &operator<<(std::ostream &stream, const EthAddr &ea);
209 std::ostream &operator<<(std::ostream &stream, const IpAddress &ia);
229 std::ostream &operator<<(std::ostream &stream, const IpNetmask &in);
249 std::ostream &operator<<(std::ostream &stream, const IpWithPort &iwp);
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-string.h162 GTEST_API_ std::string StringStreamToString(::std::stringstream* stream);
/gem5/src/cpu/o3/
H A Dthread_state.hh152 profile->dump(tc, *os->stream());
/gem5/src/base/vnc/
H A Dvncinput.cc134 captureImage->write(*fb_out->stream());
/gem5/src/python/pybind11/
H A Ddebug.cc70 Trace::setDebugLogger(new Trace::OstreamLogger(*file_stream->stream()));
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc288 "This flag specifies the host name and the port number on which to stream "
1123 // stream.
1125 // adds. It also adds the hunk header before printint into the stream.
1827 ::std::stringstream stream; local
1841 stream << CodePointToUtf8(unicode_code_point);
1843 return StringStreamToString(&stream);
2985 // We need to flush the stream buffers into the console before each
3388 static void OutputXmlAttribute(std::ostream* stream,
3394 static void OutputXmlCDataSection(::std::ostream* stream, const char* data);
3397 static void OutputXmlTestInfo(::std::ostream* stream,
3458 std::stringstream stream; local
3588 OutputXmlCDataSection(::std::ostream* stream, const char* data) argument
3607 OutputXmlAttribute( std::ostream* stream, const std::string& element_name, const std::string& name, const std::string& value) argument
3625 OutputXmlTestInfo(::std::ostream* stream, const char* test_case_name, const TestInfo& test_info) argument
3675 PrintXmlTestCase(std::ostream* stream, const TestCase& test_case) argument
3701 PrintXmlUnitTest(std::ostream* stream, const UnitTest& unit_test) argument
[all...]
H A Dgtest-port.cc932 // Object that captures an output stream (stdout/stderr).
935 // The ctor redirects the stream to a temporary file.
990 // Restores the original stream.
1004 const int fd_; // A stream to capture.
1017 // Starts capturing an output stream (stdout/stderr).
1018 void CaptureStream(int fd, const char* stream_name, CapturedStream** stream) {
1019 if (*stream != NULL) {
1023 *stream = new CapturedStream(fd);
1026 // Stops capturing the output stream and returns the captured string.
/gem5/ext/googletest/googletest/test/
H A Dgtest-param-test_test.cc83 ::std::stringstream stream; local
84 stream << value;
85 return stream.str();
98 ::std::stringstream stream; local
99 stream << "(" << get<0>(value) << ", " << get<1>(value) << ")";
100 return stream.str();
105 ::std::stringstream stream; local
106 stream << "(" << get<0>(value) << ", " << get<1>(value)
108 return stream.str();
115 ::std::stringstream stream; local
911 operator <<(std::ostream& stream, const CustomStruct& val) argument
[all...]
/gem5/ext/googletest/googlemock/src/
H A Dgmock-matchers.cc313 ::std::ostream* stream) {
315 ::std::ostream& os = *stream;
341 LogElementMatcherPairVec(matches, listener->stream());
469 matcher_describers_[mi]->DescribeTo(listener->stream());
312 LogElementMatcherPairVec(const ElementMatcherPairs& pairs, ::std::ostream* stream) argument
/gem5/src/mem/ruby/structures/
H A DPrefetcher.hh60 //! The base address for the stream prefetch
69 //! valid bit for each stream
88 void issueNextPrefetch(Addr address, PrefetchEntry *stream);
93 * hits in m_array we will continue prefetching the stream.
116 * Returns an unused stream buffer (or if all are used, returns the
117 * least recently used (accessed) stream buffer).
118 * @return The index of the least recently used stream buffer.
125 //! allocate a new stream buffer at a specific index
129 //! get pointer to the matching stream entry, returns NULL if not found
151 //! number of misses I must see before allocating a stream
[all...]
/gem5/ext/testlib/
H A Dhandlers.py262 self.stream = verbosity >= log.LogLevel.Trace
305 if self.stream:
309 if self.stream:
313 if self.stream:
/gem5/src/arch/arm/linux/
H A Dsystem.cc367 ccprintf(*(taskFile->stream()),
371 taskFile->stream()->flush();
/gem5/src/cpu/
H A Dsimple_thread.cc165 profile->dump(this, *os->stream());
H A Dbase.cc228 functionTraceStream = simout.findOrCreate(fname)->stream();
/gem5/src/mem/cache/tags/
H A Dfa_lru.cc420 printSize(std::ostream &stream, size_t size) argument
428 stream << size << SIZES[div];
/gem5/src/dev/arm/
H A Dhdlcd.cc584 pic->stream()->seekp(0);
585 imgWriter->write(*pic->stream());
H A Dpl111.cc534 pic->stream()->seekp(0);
535 bmp.write(*pic->stream());
/gem5/src/systemc/utils/
H A Dtracefile.hh204 std::ostream &stream();
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h98 ::std::ostream* stream() { return stream_; } function in class:testing::MatchResultListener
175 // listener->stream() may be NULL.
712 UniversalPrint(value, listener->stream());
716 *listener->stream() << " (of type " << type_name << ")";
718 PrintIfNotEmpty(inner_listener.str(), listener->stream());
2435 PrintIfNotEmpty(size_listener.str(), listener->stream());
2496 PrintIfNotEmpty(distance_listener.str(), listener->stream());
2558 ::std::ostream* const os = listener->stream();
2664 UniversalPrint(sorted_container, listener->stream());
2670 PrintIfNotEmpty(inner_listener.str(), listener->stream());
[all...]
/gem5/src/sim/
H A Dpseudo_inst.cc554 ostream *os(out->stream());
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc742 // Verifies that we can stream to result_listener, a listener
761 // Verifies that we can stream to the underlying stream of
763 if (result_listener->stream() != NULL) {
764 *result_listener->stream() << "diff == " << (x + y - arg);

Completed in 81 milliseconds

123