Home
last modified time | relevance | path

Searched refs:DiagnosticEventData (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lldb/source/Core/
H A DDebuggerEvents.cpp49 llvm::StringRef DiagnosticEventData::GetPrefix() const { in GetPrefix()
59 void DiagnosticEventData::Dump(Stream *s) const { in Dump()
69 ConstString DiagnosticEventData::GetFlavorString() { in GetFlavorString()
74 ConstString DiagnosticEventData::GetFlavor() const { in GetFlavor()
75 return DiagnosticEventData::GetFlavorString(); in GetFlavor()
78 const DiagnosticEventData *
79 DiagnosticEventData::GetEventDataFromEvent(const Event *event_ptr) { in GetEventDataFromEvent()
80 return GetEventDataFromEventImpl<DiagnosticEventData>(event_ptr); in GetEventDataFromEvent()
H A DDebugger.cpp1337 DiagnosticEventData::Type type, in PrivateReportDiagnostic()
1342 case DiagnosticEventData::Type::Warning: in PrivateReportDiagnostic()
1345 case DiagnosticEventData::Type::Error: in PrivateReportDiagnostic()
1354 DiagnosticEventData event_data(type, std::move(message), debugger_specific); in PrivateReportDiagnostic()
1361 new DiagnosticEventData(type, std::move(message), debugger_specific)); in PrivateReportDiagnostic()
1365 void Debugger::ReportDiagnosticImpl(DiagnosticEventData::Type type, in ReportDiagnosticImpl()
1397 ReportDiagnosticImpl(DiagnosticEventData::Type::Warning, std::move(message), in ReportWarning()
1405 ReportDiagnosticImpl(DiagnosticEventData::Type::Error, std::move(message), in ReportError()
1915 auto *data = DiagnosticEventData::GetEventDataFromEvent(event_sp.get()); in HandleDiagnosticEvent()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDebuggerEvents.h51 class DiagnosticEventData : public EventData {
57 DiagnosticEventData(Type type, std::string message, bool debugger_specific) in DiagnosticEventData() function
60 ~DiagnosticEventData() override = default;
73 static const DiagnosticEventData *
81 DiagnosticEventData(const DiagnosticEventData &) = delete;
82 const DiagnosticEventData &operator=(const DiagnosticEventData &) = delete;
H A DDebugger.h471 static void ReportDiagnosticImpl(DiagnosticEventData::Type type,
/llvm-project-15.0.7/lldb/unittests/Core/
H A DDiagnosticEventTest.cpp72 const DiagnosticEventData *data = in TEST_F()
73 DiagnosticEventData::GetEventDataFromEvent(event_sp.get()); in TEST_F()
97 const DiagnosticEventData *data = in TEST_F()
98 DiagnosticEventData::GetEventDataFromEvent(event_sp.get()); in TEST_F()
128 const DiagnosticEventData *data = in TEST_F()
129 DiagnosticEventData::GetEventDataFromEvent(event_sp.get()); in TEST_F()
159 const DiagnosticEventData *data = in TEST_F()
160 DiagnosticEventData::GetEventDataFromEvent(event_sp.get()); in TEST_F()
/llvm-project-15.0.7/lldb/source/API/
H A DSBDebugger.cpp174 const DiagnosticEventData *diagnostic_data = in GetDiagnosticFromEvent()
175 DiagnosticEventData::GetEventDataFromEvent(event.get()); in GetDiagnosticFromEvent()