Lines Matching defs:msg_type

55 sc_report_handler::report(sc_severity severity, const char *msg_type,
58 report(severity, msg_type, msg, SC_MEDIUM, file, line);
62 sc_report_handler::report(sc_severity severity, const char *msg_type,
66 if (!msg_type)
67 msg_type = SC_ID_UNKNOWN_ERROR_;
73 sc_gem5::ReportMsgInfo &msgInfo = sc_gem5::reportMsgInfoMap()[msg_type];
94 sc_report report(severity, msg_type, msg, verbosity, file, line,
114 std::string &msg_type = sc_gem5::reportIdToMsgMap()[id];
119 report(severity, msg_type.c_str(), msg, file, line);
132 sc_report_handler::set_actions(const char *msg_type, sc_actions actions)
134 if (!msg_type)
135 msg_type = SC_ID_UNKNOWN_ERROR_;
137 sc_gem5::ReportMsgInfo &info = sc_gem5::reportMsgInfoMap()[msg_type];
145 const char *msg_type, sc_severity severity, sc_actions actions)
147 if (!msg_type)
148 msg_type = SC_ID_UNKNOWN_ERROR_;
150 sc_gem5::ReportMsgInfo &info = sc_gem5::reportMsgInfoMap()[msg_type];
166 sc_report_handler::stop_after(const char *msg_type, int limit)
168 if (!msg_type)
169 msg_type = SC_ID_UNKNOWN_ERROR_;
171 sc_gem5::ReportMsgInfo &info = sc_gem5::reportMsgInfoMap()[msg_type];
179 const char *msg_type, sc_severity severity, int limit)
181 if (!msg_type)
182 msg_type = SC_ID_UNKNOWN_ERROR_;
184 sc_gem5::ReportMsgInfo &info = sc_gem5::reportMsgInfoMap()[msg_type];
197 sc_report_handler::get_count(const char *msg_type)
199 if (!msg_type)
200 msg_type = SC_ID_UNKNOWN_ERROR_;
202 return sc_gem5::reportMsgInfoMap()[msg_type].count;
206 sc_report_handler::get_count(const char *msg_type, sc_severity severity)
208 if (!msg_type)
209 msg_type = SC_ID_UNKNOWN_ERROR_;
211 return sc_gem5::reportMsgInfoMap()[msg_type].sevCounts[severity];
360 sc_interrupt_here(const char *msg_type, sc_severity)
366 sc_stop_here(const char *msg_type, sc_severity)