Searched refs:m_message (Results 1 - 6 of 6) sorted by relevance

/netbsd-current/external/bsd/atf/dist/tools/
H A Dexceptions.cpp65 if (m_message.length() == 0) {
66 m_message = std::string(std::runtime_error::what()) + ": ";
67 m_message += ::strerror(m_sys_err);
70 return m_message.c_str();
H A Dexceptions.hpp81 mutable std::string m_message; member in class:tools::system_error
/netbsd-current/external/bsd/atf/dist/atf-c++/detail/
H A Dexceptions.hpp44 mutable std::string m_message; member in class:atf::system_error
H A Dexceptions.cpp77 if (m_message.length() == 0) {
78 m_message = std::string(std::runtime_error::what()) + ": ";
79 m_message += ::strerror(m_sys_err);
82 return m_message.c_str();
/netbsd-current/external/bsd/elftosb/dist/elftosb2/
H A DElftosbAST.cpp1088 : StatementASTNode(other), m_type(other.m_type), m_message()
1090 m_message = new std::string(*other.m_message);
1097 printf("%s: %s\n", getTypeName(), m_message->c_str());
H A DElftosbAST.h896 MessageStatementASTNode(message_type_t messageType, std::string * message) : StatementASTNode(), m_type(messageType), m_message(message) {}
906 inline std::string * getMessage() { return m_message; }
912 smart_ptr<std::string> m_message; //!< Message to report. member in class:elftosb::MessageStatementASTNode

Completed in 311 milliseconds