Home
last modified time | relevance | path

Searched refs:GetAsDictionary (Results 1 – 25 of 33) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp495 std::string description = std::string(report->GetAsDictionary() in FormatDescription()
617 std::string summary = std::string(report->GetAsDictionary() in GenerateSummary()
626 if (report->GetAsDictionary() in GenerateSummary()
630 pc = GetFirstNonInternalFramePc(report->GetAsDictionary() in GenerateSummary()
634 ->GetAsDictionary() in GenerateSummary()
638 if (report->GetAsDictionary() in GenerateSummary()
642 pc = GetFirstNonInternalFramePc(report->GetAsDictionary() in GenerateSummary()
646 ->GetAsDictionary() in GenerateSummary()
654 if (report->GetAsDictionary() in GenerateSummary()
658 StructuredData::ObjectSP loc = report->GetAsDictionary() in GenerateSummary()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DStructuredDataImpl.h94 auto dict = m_data_sp->GetAsDictionary(); in GetSize()
105 auto dict = m_data_sp->GetAsDictionary(); in GetValueForKey()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStructuredData.h99 Dictionary *GetAsDictionary() { in GetAsDictionary()
259 if (auto *dict = item_sp->GetAsDictionary()) in GetItemAtIndexAsString()
394 Dictionary *dict = obj_sp->GetAsDictionary();
493 result = value_sp->GetAsDictionary(); in GetValueForKeyAsInteger()
98 Dictionary *GetAsDictionary() { GetAsDictionary() function
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp205 const OptionValueDictionary *dict = value->GetAsDictionary(); in GetPropertyAtIndexAsArgs()
232 OptionValueDictionary *dict = value->GetAsDictionary(); in SetPropertyAtIndexFromArgs()
244 return property->GetValue()->GetAsDictionary(); in GetPropertyAtIndexAsOptionValueDictionary()
H A DOptionValue.cpp127 OptionValueDictionary *OptionValue::GetAsDictionary() { in GetAsDictionary() function in OptionValue
133 const OptionValueDictionary *OptionValue::GetAsDictionary() const { in GetAsDictionary() function in OptionValue
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValue.h202 OptionValueDictionary *GetAsDictionary();
203 const OptionValueDictionary *GetAsDictionary() const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp293 OptionValueDictionary *mem_dict = value_sp->GetAsDictionary(); in LoadStateFromDictionary()
324 OptionValueDictionary *reg_dict = value_sp->GetAsDictionary(); in LoadStateFromDictionary()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBStructuredData.cpp162 StructuredData::Dictionary *dict = obj_sp->GetAsDictionary(); in GetKeys()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.cpp153 std::string description = std::string(report->GetAsDictionary() in FormatDescription()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DTelemetry.cpp148 auto *dict = entry.GetObjectSP()->GetAsDictionary(); in DispatchClientTelemetry()
H A DDisassembler.cpp889 option_value_sp->GetAsDictionary()->SetValueForKey(key, value_sp, in ReadDictionary()
938 data_dictionary_sp->GetAsDictionary(); in TestEmulation()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp174 std::string description = std::string(report->GetAsDictionary() in NotifyBreakpointHit()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp182 report->GetAsDictionary()->GetValueForKeyAsString( in GetStopReasonDescription()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPT.cpp665 if (StructuredData::Dictionary *dict = configuration->GetAsDictionary()) { in Start()
705 if (StructuredData::Dictionary *dict = configuration->GetAsDictionary()) { in Start()
/freebsd/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp200 if (auto thread_dict = thread_dict_obj->GetAsDictionary()) { in UpdateThreadList()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DStructuredData.cpp111 ObjectSP value = GetAsDictionary()->GetValueForKey(key); in GetObjectForDotSeparatedPath()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp342 if (auto host_info_dict = target_object->GetAsDictionary()) { in ParsePythonTargetDefinition()
1521 StructuredData::Dictionary *thread_dict = object->GetAsDictionary(); in UpdateThreadIDList()
1651 thread_infos->GetItemAtIndex(i)->GetAsDictionary(); in GetThreadStopInfoFromJSON()
2143 StructuredData::Dictionary *registers_dict = object->GetAsDictionary(); in SetThreadStopInfo()
2161 object->GetAsDictionary(); in SetThreadStopInfo()
2653 thread_infos->GetItemAtIndex(i)->GetAsDictionary(); in WillPublicStop()
4017 args_dict->GetAsDictionary()->AddIntegerItem("thread", tid); in GetExtendedInfoForThread()
4050 args_dict->GetAsDictionary()->AddIntegerItem("image_list_address", in GetLoadedDynamicLibrariesInfos()
4052 args_dict->GetAsDictionary()->AddIntegerItem("image_count", image_count); in GetLoadedDynamicLibrariesInfos()
4060 args_dict->GetAsDictionary()->AddBooleanItem("fetch_all_solibs", true); in GetLoadedDynamicLibrariesInfos()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpoint.cpp130 StructuredData::Dictionary *breakpoint_dict = object_data->GetAsDictionary(); in CreateFromStructuredData()
222 StructuredData::Dictionary *bkpt_dict = bkpt_object_sp->GetAsDictionary(); in SerializedBreakpointMatchesNames()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp447 StructuredData::Dictionary *dict = obj->GetAsDictionary(); in GetLoadedDynamicLibrariesInfos()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp1873 StructuredData::Dictionary *activity_dict = activity->GetAsDictionary(); in GetDescription()
1889 breadcrumb->GetAsDictionary(); in GetDescription()
1910 message->GetAsDictionary(); in GetDescription()
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1142 const StructuredData::Dictionary *dictionary = object_sp->GetAsDictionary(); in GetDescription()
1184 auto event = object->GetAsDictionary(); in GetDescription()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp1413 StructuredData::Dictionary *opt_dict = object->GetAsDictionary(); in SetOptionsFromArray()
1876 = options_object_sp->GetAsDictionary(); in CommandObjectScriptingObjectParsed()
1925 StructuredData::Dictionary *arg_dict = object->GetAsDictionary(); in CommandObjectScriptingObjectParsed()
H A DCommandObjectBreakpoint.cpp2217 bkpt_object_sp->GetAsDictionary(); in HandleOptionArgumentCompletion()
2226 bkpt_dict = bkpt_data_sp->GetAsDictionary(); in HandleOptionArgumentCompletion()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp727 auto dict = object->GetAsDictionary(); in GetRemoteUnixSignals()

12