• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/opencsd/decoder/include/common/

Lines Matching defs:ocsdError

45  * @class ocsdError   
55 * The ocsdError class contains a static function to output a formatted string representation of an error.
58 class ocsdError {
60 ocsdError(const ocsd_err_severity_t sev_type, const ocsd_err_t code); /**< Default error constructor with severity and error code. */
61 ocsdError(const ocsd_err_severity_t sev_type, const ocsd_err_t code, const ocsd_trc_index_t idx); /**< Constructor with optional trace index. */
62 ocsdError(const ocsd_err_severity_t sev_type, const ocsd_err_t code, const ocsd_trc_index_t idx, const uint8_t chan_id); /**< Constructor with optional trace index and channel ID. */
63 ocsdError(const ocsd_err_severity_t sev_type, const ocsd_err_t code, const std::string &msg); /**< Default error constructor with severity and error code - plus message. */
64 ocsdError(const ocsd_err_severity_t sev_type, const ocsd_err_t code, const ocsd_trc_index_t idx, const std::string &msg); /**< Constructor with optional trace index - plus message. */
65 ocsdError(const ocsd_err_severity_t sev_type, const ocsd_err_t code, const ocsd_trc_index_t idx, const uint8_t chan_id, const std::string &msg); /**< Constructor with optional trace index and channel ID - plus message. */
67 ocsdError(const ocsdError *pError); /**< Copy constructor */
68 ocsdError(const ocsdError &Error); /**< Copy constructor */
69 ~ocsdError(); /**< Destructor */
71 ocsdError& operator=(const ocsdError *p_err);
72 ocsdError& operator=(const ocsdError &err);
82 static const std::string getErrorString(const ocsdError &error); /**< Generate a formatted error string for the supplied error. */
85 static void appendErrorDetails(std::string &errStr, const ocsdError &error); /**< build the error string. */
86 ocsdError(); /**< Make no parameter default constructor inaccessible. */
96 inline ocsdError& ocsdError::operator=(const ocsdError *p_err)
106 inline ocsdError& ocsdError::operator=(const ocsdError &err)