Searched refs:severity (Results 1 - 13 of 13) sorted by relevance

/gem5/ext/systemc/src/sysc/utils/
H A Dsc_stop_here.h54 sc_interrupt_here( const char* id, sc_severity severity );
65 sc_stop_here( const char* id, sc_severity severity );
H A Dsc_stop_here.cpp50 sc_interrupt_here( const char* id, sc_severity severity )
53 // interrupt with any severity, or to interrupt with a specific severity
55 switch( severity ) {
81 sc_stop_here( const char* id, sc_severity severity )
84 // stop with any severity, or to stop with a specific severity
86 switch( severity ) {
H A Dsc_report.cpp78 : severity(SC_INFO),
96 : severity(severity_),
110 severity(other.severity),
133 swap( severity, that.severity );
H A Dsc_report.h45 // Enumeration of possible exception severity levels
125 { return severity; }
161 sc_severity severity; member in class:sc_core::sc_report
/gem5/src/systemc/utils/
H A Dsc_report_handler.cc55 sc_report_handler::report(sc_severity severity, const char *msg_type, argument
58 report(severity, msg_type, msg, SC_MEDIUM, file, line);
62 sc_report_handler::report(sc_severity severity, const char *msg_type, argument
69 if (severity == SC_INFO && verbosity > sc_gem5::reportVerbosityLevel)
72 sc_gem5::ReportSevInfo &sevInfo = sc_gem5::reportSevInfos[severity];
77 msgInfo.sevCounts[severity]++;
80 if (msgInfo.sevActions[severity] != SC_UNSPECIFIED)
81 actions = msgInfo.sevActions[severity];
90 msgInfo.checkLimits(severity, actions);
94 sc_report report(severity, msg_typ
111 report(sc_severity severity, int id, const char *msg, const char *file, int line) argument
123 set_actions(sc_severity severity, sc_actions actions) argument
144 set_actions( const char *msg_type, sc_severity severity, sc_actions actions) argument
157 stop_after(sc_severity severity, int limit) argument
178 stop_after( const char *msg_type, sc_severity severity, int limit) argument
191 get_count(sc_severity severity) argument
206 get_count(const char *msg_type, sc_severity severity) argument
[all...]
H A Dreport.hh55 checkLimits(sc_core::sc_severity severity, sc_core::sc_actions &actions) argument
57 int sevLimit = sevLimits[severity];
58 int sevCount = sevCounts[severity];
/gem5/ext/googletest/googlemock/src/
H A Dgmock-internal-utils.cc108 // Returns true iff a log with the given severity is visible according
110 GTEST_API_ bool LogIsVisible(LogSeverity severity) { argument
120 return severity == kWarning;
124 // Prints the given message to stdout iff 'severity' >= the level
131 GTEST_API_ void Log(LogSeverity severity, argument
134 if (!LogIsVisible(severity))
143 if (severity == kWarning) {
H A Dgmock-spec-builders.cc59 GTEST_API_ void LogWithLocation(testing::internal::LogSeverity severity, argument
64 Log(severity, s.str(), 0);
/gem5/ext/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h320 // Returns true iff a log with the given severity is visible according
322 GTEST_API_ bool LogIsVisible(LogSeverity severity);
324 // Prints the given message to stdout iff 'severity' >= the level
331 GTEST_API_ void Log(LogSeverity severity,
/gem5/ext/googletest/googletest/src/
H A Dgtest-port.cc908 GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line) argument
909 : severity_(severity) {
911 severity == GTEST_INFO ? "[ INFO ]" :
912 severity == GTEST_WARNING ? "[WARNING]" :
913 severity == GTEST_ERROR ? "[ ERROR ]" : "[ FATAL ]";
918 // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
/gem5/ext/googletest/googlemock/test/
H A Dgmock-internal-utils_test.cc404 // and log severity.
405 void TestLogWithSeverity(const string& verbosity, LogSeverity severity, argument
410 Log(severity, "Test log.\n", 0);
414 severity == kWarning ?
548 // and log severity.
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h230 // GTEST_LOG_() - logs messages at the specified severity level.
1239 // GTEST_LOG_(severity) - logs messages at the specified severity level. The
1251 // Formats log entry severity, provides a stream object for streaming the
1256 GTestLog(GTestLogSeverity severity, const char* file, int line);
1258 // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
1271 # define GTEST_LOG_(severity) \
1272 ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h1241 GTEST_API_ void LogWithLocation(testing::internal::LogSeverity severity,

Completed in 38 milliseconds