Lines Matching refs:sc_report_handler

22   sc_report_handler.cpp - 
38 #include "sysc/utils/sc_report_handler.h"
45 int sc_report_handler::verbosity_level = SC_MEDIUM;
120 void sc_report_handler::default_handler(const sc_report& rep,
158 sc_report_handler::set_log_file_name(NULL);
167 int sc_report_handler::get_count(sc_severity severity_)
172 int sc_report_handler::get_count(const char* msg_type_)
182 int sc_report_handler::get_count(const char* msg_type_, sc_severity severity_)
194 // CLASS: sc_report_handler
198 sc_msg_def * sc_report_handler::mdlookup(const char * msg_type_)
213 sc_actions sc_report_handler::execute(sc_msg_def* md, sc_severity severity_)
264 void sc_report_handler::report( sc_severity severity_,
293 void sc_report_handler::report(sc_severity severity_,
323 void sc_report_handler::initialize()
366 void sc_report_handler::release()
398 sc_msg_def * sc_report_handler::add_msg_type(const char * msg_type_)
440 void sc_report_handler::add_static_msg_types(msg_def_items * items)
447 sc_actions sc_report_handler::set_actions(sc_severity severity_,
455 sc_actions sc_report_handler::set_actions(const char * msg_type_,
469 sc_actions sc_report_handler::set_actions(const char * msg_type_,
484 int sc_report_handler::stop_after(sc_severity severity_, int limit)
493 int sc_report_handler::stop_after(const char * msg_type_, int limit)
512 int sc_report_handler::stop_after(const char * msg_type_,
534 sc_actions sc_report_handler::suppress(sc_actions mask)
541 sc_actions sc_report_handler::suppress()
546 sc_actions sc_report_handler::force(sc_actions mask)
553 sc_actions sc_report_handler::force()
559 sc_report_handler::set_handler(sc_report_handler_proc handler_)
562 handler = handler_ ? handler_: &sc_report_handler::default_handler;
567 sc_report_handler::get_handler()
572 sc_report* sc_report_handler::get_cached_report()
582 void sc_report_handler::clear_cached_report()
595 sc_actions sc_report_handler::get_new_action_id()
608 bool sc_report_handler::set_log_file_name(const char* name_)
624 const char * sc_report_handler::get_log_file_name()
629 void sc_report_handler::cache_report(const sc_report& rep)
645 sc_msg_def * sc_report_handler::mdlookup(int id)
656 int sc_report_handler::get_verbosity_level() { return verbosity_level; }
658 int sc_report_handler::set_verbosity_level( int level )
666 // CLASS: sc_report_handler
670 sc_actions sc_report_handler::suppress_mask = 0;
671 sc_actions sc_report_handler::force_mask = 0;
673 sc_actions sc_report_handler::sev_actions[SC_MAX_SEVERITY] =
683 sc_actions sc_report_handler::sev_limit[SC_MAX_SEVERITY] =
687 sc_actions sc_report_handler::sev_call_count[SC_MAX_SEVERITY] = { 0, 0, 0, 0 };
689 sc_report* sc_report_handler::last_global_report = NULL;
690 sc_actions sc_report_handler::available_actions =
700 sc_report_handler_proc sc_report_handler::handler =
701 &sc_report_handler::default_handler;
703 char * sc_report_handler::log_file_name = 0;
705 sc_report_handler::msg_def_items * sc_report_handler::messages =
706 &sc_report_handler::msg_terminator;
740 sc_report_handler::msg_def_items sc_report_handler::msg_terminator =
750 // $Log: sc_report_handler.cpp,v $