Home
last modified time | relevance | path

Searched refs:dictionary_sp (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebuggerEvents.cpp62 auto dictionary_sp = std::make_shared<StructuredData::Dictionary>(); in GetAsStructuredData() local
63 dictionary_sp->AddStringItem("title", progress_data->GetTitle()); in GetAsStructuredData()
64 dictionary_sp->AddStringItem("details", progress_data->GetDetails()); in GetAsStructuredData()
65 dictionary_sp->AddStringItem("message", progress_data->GetMessage()); in GetAsStructuredData()
66 dictionary_sp->AddIntegerItem("progress_id", progress_data->GetID()); in GetAsStructuredData()
67 dictionary_sp->AddIntegerItem("completed", progress_data->GetCompleted()); in GetAsStructuredData()
68 dictionary_sp->AddIntegerItem("total", progress_data->GetTotal()); in GetAsStructuredData()
69 dictionary_sp->AddBooleanItem("debugger_specific", in GetAsStructuredData()
72 return dictionary_sp; in GetAsStructuredData()
118 auto dictionary_sp = std::make_shared<StructuredData::Dictionary>(); in GetAsStructuredData() local
[all …]
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp141 StructuredData::DictionarySP dictionary_sp = in GetProgressDataFromEvent() local
144 if (!dictionary_sp) in GetProgressDataFromEvent()
148 data.m_impl_up->SetObjectSP(std::move(dictionary_sp)); in GetProgressDataFromEvent()
156 StructuredData::DictionarySP dictionary_sp = in GetDiagnosticFromEvent() local
159 if (!dictionary_sp) in GetDiagnosticFromEvent()
163 data.m_impl_up->SetObjectSP(std::move(dictionary_sp)); in GetDiagnosticFromEvent()