HomeSort by: relevance | last modified time | path
    Searched refs:m_message (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/atf/dist/tools/
exceptions.cpp 65 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();
exceptions.hpp 81 mutable std::string m_message; member in class:tools::system_error
  /src/external/bsd/atf/dist/atf-c++/detail/
exceptions.hpp 44 mutable std::string m_message; member in class:atf::system_error
exceptions.cpp 77 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();
  /src/external/bsd/elftosb/dist/elftosb2/
ElftosbAST.cpp 1088 : 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());
ElftosbAST.h 896 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 19 milliseconds