Searched refs:DiagnosticEventData (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| H A D | DebuggerEvents.h | 52 class DiagnosticEventData : public EventData { 59 DiagnosticEventData(Type type, std::string message, bool debugger_specific) in DiagnosticEventData() function 62 ~DiagnosticEventData() override = default; 75 static const DiagnosticEventData * 83 DiagnosticEventData(const DiagnosticEventData &) = delete; 84 const DiagnosticEventData &operator=(const DiagnosticEventData &) = delete;
|
| H A D | Debugger.h | 491 static void ReportDiagnosticImpl(DiagnosticEventData::Type type,
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | DebuggerEvents.cpp | 52 llvm::StringRef DiagnosticEventData::GetPrefix() const { in GetPrefix() 64 void DiagnosticEventData::Dump(Stream *s) const { in Dump() 74 ConstString DiagnosticEventData::GetFlavorString() { in GetFlavorString() 79 ConstString DiagnosticEventData::GetFlavor() const { in GetFlavor() 80 return DiagnosticEventData::GetFlavorString(); in GetFlavor() 83 const DiagnosticEventData * 84 DiagnosticEventData::GetEventDataFromEvent(const Event *event_ptr) { in GetEventDataFromEvent() 85 return GetEventDataFromEventImpl<DiagnosticEventData>(event_ptr); in GetEventDataFromEvent()
|
| H A D | Debugger.cpp | 1327 DiagnosticEventData::Type type, in PrivateReportDiagnostic() 1332 case DiagnosticEventData::Type::Info: in PrivateReportDiagnostic() 1335 case DiagnosticEventData::Type::Warning: in PrivateReportDiagnostic() 1338 case DiagnosticEventData::Type::Error: in PrivateReportDiagnostic() 1347 DiagnosticEventData event_data(type, std::move(message), debugger_specific); in PrivateReportDiagnostic() 1354 new DiagnosticEventData(type, std::move(message), debugger_specific)); in PrivateReportDiagnostic() 1358 void Debugger::ReportDiagnosticImpl(DiagnosticEventData::Type type, in ReportDiagnosticImpl() 1369 if (type == DiagnosticEventData::Type::Info) in ReportDiagnosticImpl() 1399 ReportDiagnosticImpl(DiagnosticEventData::Type::Warning, std::move(message), in ReportWarning() 1406 ReportDiagnosticImpl(DiagnosticEventData::Type::Error, std::move(message), in ReportError() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBDebugger.cpp | 175 const DiagnosticEventData *diagnostic_data = in GetDiagnosticFromEvent() 176 DiagnosticEventData::GetEventDataFromEvent(event.get()); in GetDiagnosticFromEvent()
|