| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | StructuredData.h | 267 void AddItem(const ObjectSP &item) { m_items.push_back(item); } in AddItem() function 274 AddItem(std::make_shared<SignedInteger>(value)); in AddIntegerItem() 276 AddItem(std::make_shared<UnsignedInteger>(value)); in AddIntegerItem() 282 AddItem(std::make_shared<String>(std::move(value))); in AddStringItem() 286 AddItem(std::make_shared<Boolean>(value)); in AddBooleanItem() 511 void AddItem(llvm::StringRef key, ObjectSP value_sp) { in AddItem() function 520 AddItem(key, std::make_shared<SignedInteger>(value)); in AddIntegerItem() 522 AddItem(key, std::make_shared<UnsignedInteger>(value)); in AddIntegerItem() 526 AddItem(key, std::make_shared<Float>(value)); in AddFloatItem() 530 AddItem(key, std::make_shared<String>(std::move(value))); in AddStringItem() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
| H A D | InstrumentationRuntimeTSan.cpp | 243 array_sp->AddItem(dict_sp); in ConvertToStructuredArray() 348 dict->AddItem("sleep_trace", CreateStackTrace( in RetrieveReportData() 358 dict->AddItem("trace", CreateStackTrace(o)); in RetrieveReportData() 362 dict->AddItem("stacks", stacks); in RetrieveReportData() 388 dict->AddItem("trace", CreateStackTrace(o)); in RetrieveReportData() 390 dict->AddItem("mops", mops); in RetrieveReportData() 420 dict->AddItem("trace", CreateStackTrace(o)); in RetrieveReportData() 424 dict->AddItem("locs", locs); in RetrieveReportData() 443 dict->AddItem("mutexes", mutexes); in RetrieveReportData() 471 dict->AddItem("threads", threads); in RetrieveReportData() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverName.cpp | 196 names_sp->AddItem(StructuredData::StringSP( in SerializeToStructuredData() 198 name_masks_sp->AddItem(StructuredData::UnsignedIntegerSP( in SerializeToStructuredData() 201 options_dict_sp->AddItem(GetKey(OptionNames::SymbolNameArray), names_sp); in SerializeToStructuredData() 202 options_dict_sp->AddItem(GetKey(OptionNames::NameMaskArray), name_masks_sp); in SerializeToStructuredData()
|
| H A D | BreakpointResolverFileRegex.cpp | 86 names_array_sp->AddItem(item); in SerializeToStructuredData() 88 options_dict_sp->AddItem(GetKey(OptionNames::LineNumber), names_array_sp); in SerializeToStructuredData()
|
| H A D | Breakpoint.cpp | 87 names_array_sp->AddItem( in SerializeToStructuredData() 90 breakpoint_contents_sp->AddItem(Breakpoint::GetKey(OptionNames::Names), in SerializeToStructuredData() 102 breakpoint_contents_sp->AddItem(BreakpointResolver::GetSerializationKey(), in SerializeToStructuredData() 110 breakpoint_contents_sp->AddItem(SearchFilter::GetSerializationKey(), in SerializeToStructuredData() 118 breakpoint_contents_sp->AddItem(BreakpointOptions::GetSerializationKey(), in SerializeToStructuredData() 121 breakpoint_dict_sp->AddItem(GetSerializationKey(), breakpoint_contents_sp); in SerializeToStructuredData()
|
| H A D | BreakpointOptions.cpp | 49 user_source_sp->AddItem(item_sp); in SerializeToStructuredData() 50 options_dict_sp->AddItem(GetKey(OptionNames::UserSource), user_source_sp); in SerializeToStructuredData() 377 options_dict_sp->AddItem( in SerializeToStructuredData() 384 options_dict_sp->AddItem(ThreadSpec::GetSerializationKey(), thread_spec_sp); in SerializeToStructuredData()
|
| H A D | BreakpointResolverScripted.cpp | 93 options_dict_sp->AddItem(GetKey(OptionNames::ScriptArgs), in SerializeToStructuredData()
|
| H A D | BreakpointResolver.cpp | 156 type_dict_sp->AddItem(GetSerializationSubclassOptionsKey(), options_dict_sp); in WrapOptionsDict()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | SearchFilter.cpp | 179 type_dict_sp->AddItem(GetSerializationSubclassOptionsKey(), options_dict_sp); in WrapOptionsDict() 195 module_array_sp->AddItem(std::make_shared<StructuredData::String>( in SerializeFileSpecList() 198 options_dict_sp->AddItem(GetKey(name), module_array_sp); in SerializeFileSpecList() 488 module_array_sp->AddItem( in SerializeToStructuredData() 490 options_dict_sp->AddItem(GetKey(OptionNames::ModList), module_array_sp); in SerializeToStructuredData()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Utility/ |
| H A D | StructuredData.cpp | 92 dict_up->AddItem(key, value_sp); in ParseJSONObject() 101 array_up->AddItem(value_sp); in ParseJSONArray()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | XML.cpp | 462 array_sp->AddItem(CreatePlistValue(node)); in CreatePlistValue() 480 dict_sp->AddItem(key_name, CreatePlistValue(node)); in CreatePlistValue()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
| H A D | InstrumentationRuntimeMainThreadChecker.cpp | 147 d->AddItem("trace", trace_sp); in RetrieveReportData()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/API/ |
| H A D | SBDebugger.cpp | 757 dict.AddItem(name, std::move(entry_up)); in AddBoolConfigEntry() 763 array_up->AddItem(std::make_unique<StructuredData::String>(#target)); in AddLLVMTargets() 766 entry_up->AddItem("value", std::move(array_up)); in AddLLVMTargets() 768 dict.AddItem("targets", std::move(entry_up)); in AddLLVMTargets()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
| H A D | InstrumentationRuntimeUBSan.cpp | 178 d->AddItem("trace", trace_sp); in RetrieveReportData()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 578 config_sp->AddItem("source-flags", source_flags_sp); in BuildConfigurationData() 595 config_sp->AddItem("filter-rules", json_filter_rules_sp); in BuildConfigurationData() 599 json_filter_rules_sp->AddItem(rule_sp->Serialize()); in BuildConfigurationData()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | PythonDataObjects.cpp | 576 result->AddItem(obj.CreateStructuredObject()); in CreateStructuredArray() 647 result->AddItem(obj.CreateStructuredObject()); in CreateStructuredArray() 760 result->AddItem(key.Str().GetString(), structured_value); in CreateStructuredDictionary()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 1292 separate_debug_info_files.AddItem(oso_data); in GetSeparateDebugInfo() 1297 d.AddItem("separate-debug-info-files", in GetSeparateDebugInfo()
|
| H A D | SymbolFileDWARF.cpp | 4301 separate_debug_info_files.AddItem(dwo_data); in GetSeparateDebugInfo() 4306 d.AddItem("separate-debug-info-files", in GetSeparateDebugInfo()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Target/ |
| H A D | Target.cpp | 1120 break_store_ptr->AddItem(bkpt_save_sp); in SerializeBreakpointsToFile() 1146 break_store_ptr->AddItem(bkpt_save_sp); in SerializeBreakpointsToFile()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 3932 args_dict->GetAsDictionary()->AddItem("solib_addresses", addresses); in GetLoadedDynamicLibrariesInfos()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 1460 list.AddItem( in GetSeparateDebugInfoList()
|