Home
last modified time | relevance | path

Searched refs:m_message (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/atf/atf-c++/detail/
H A Dexceptions.cpp74 if (m_message.length() == 0) { in what()
75 m_message = std::string(std::runtime_error::what()) + ": "; in what()
76 m_message += ::strerror(m_sys_err); in what()
79 return m_message.c_str(); in what()
H A Dexceptions.hpp40 mutable std::string m_message; member in atf::system_error
/freebsd/contrib/llvm-project/lldb/source/Plugins/Protocol/MCP/
H A DMCPError.cpp20 : m_message(message), m_error_code(error_code) {} in MCPError()
22 void MCPError::log(llvm::raw_ostream &OS) const { OS << m_message; } in log()
31 error.error.message = m_message; in toProtcolError()
H A DMCPError.h25 const std::string &getMessage() const { return m_message; } in getMessage()
33 std::string m_message;
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDiagnosticManager.cpp37 : ErrorInfo(std::error_code(result, expression_category())), m_message(msg), in ExpressionError()
57 if (!m_message.empty()) in message()
58 os << m_message << '\n'; in message()
73 (lldb::ExpressionResults)convertToErrorCode().value(), m_message, in Clone()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebuggerEvents.h81 : m_message(std::move(message)), m_severity(severity), in DiagnosticEventData()
85 const std::string &GetMessage() const { return m_message; } in GetMessage()
103 std::string m_message;
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDiagnosticManager.h31 std::string m_message; variable
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp3352 std::string m_message; member in Catch::Matchers::Exception::ExceptionMessageMatcher
3356 m_message(message) in ExceptionMessageMatcher()
11258 return ex.what() == m_message; in match()
11262 return "exception message matches \"" + m_message + "\""; in describe()