Home
last modified time | relevance | path

Searched refs:AddStringItem (Results 1 – 25 of 28) sorted by relevance

12

/llvm-project/lldb/source/Core/
H A DDebuggerEvents.cpp63 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()
119 dictionary_sp->AddStringItem("message", diagnostic_data->GetMessage()); in GetAsStructuredData()
120 dictionary_sp->AddStringItem("type", diagnostic_data->GetPrefix()); in GetAsStructuredData()
/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp140 d->AddStringItem("instrumentation_class", "MainThreadChecker"); in RetrieveReportData()
141 d->AddStringItem("api_name", apiName); in RetrieveReportData()
142 d->AddStringItem("class_name", className); in RetrieveReportData()
143 d->AddStringItem("selector", selector); in RetrieveReportData()
144 d->AddStringItem("description", in RetrieveReportData()
/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp344 dict->AddStringItem("instrumentation_class", "ThreadSanitizer"); in RetrieveReportData()
345 dict->AddStringItem("issue_type", in RetrieveReportData()
401 dict->AddStringItem("type", RetrieveString(o, process_sp, ".type")); in RetrieveReportData()
423 dict->AddStringItem("object_type", in RetrieveReportData()
465 dict->AddStringItem("name", RetrieveString(o, process_sp, ".name")); in RetrieveReportData()
815 report->GetAsDictionary()->AddStringItem("description", issue_description); in NotifyBreakpointHit()
817 report->GetAsDictionary()->AddStringItem("stop_description", in NotifyBreakpointHit()
820 report->GetAsDictionary()->AddStringItem("summary", summary); in NotifyBreakpointHit()
830 report->GetAsDictionary()->AddStringItem("location_description", in NotifyBreakpointHit()
836 report->GetAsDictionary()->AddStringItem("global_nam in NotifyBreakpointHit()
[all...]
/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp170 d->AddStringItem("instrumentation_class", "UndefinedBehaviorSanitizer"); in RetrieveReportData()
171 d->AddStringItem("description", IssueKind); in RetrieveReportData()
172 d->AddStringItem("summary", ErrMessage); in RetrieveReportData()
173 d->AddStringItem("filename", Filename); in RetrieveReportData()
/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.cpp131 dict->AddStringItem("instrumentation_class", "AddressSanitizer"); in RetrieveReportData()
132 dict->AddStringItem("stop_type", "fatal_error"); in RetrieveReportData()
139 dict->AddStringItem("description", description); in RetrieveReportData()
/llvm-project/lldb/source/Target/
H A DThreadSpec.cpp61 data_dict_sp->AddStringItem(GetKey(OptionNames::ThreadName), m_name); in SerializeToStructuredData()
63 data_dict_sp->AddStringItem(GetKey(OptionNames::QueueName), m_queue_name); in SerializeToStructuredData()
/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp72 options_dict_sp->AddStringItem(GetKey(OptionNames::ModuleName), in SerializeToStructuredData()
81 options_dict_sp->AddStringItem(GetKey(OptionNames::ModuleName), in SerializeToStructuredData()
H A DBreakpointResolverScripted.cpp91 options_dict_sp->AddStringItem(GetKey(OptionNames::PythonClassName), in SerializeToStructuredData()
H A DBreakpointResolverName.cpp193 options_dict_sp->AddStringItem(GetKey(OptionNames::RegexString), in SerializeToStructuredData()
208 options_dict_sp->AddStringItem( in SerializeToStructuredData()
H A DBreakpointResolverFileRegex.cpp79 options_dict_sp->AddStringItem(GetKey(OptionNames::RegexString), in SerializeToStructuredData()
H A DBreakpointOptions.cpp53 options_dict_sp->AddStringItem( in SerializeToStructuredData()
365 options_dict_sp->AddStringItem(GetKey(OptionNames::ConditionText), in SerializeToStructuredData()
H A DBreakpointResolverFileLine.cpp109 options_dict_sp->AddStringItem(GetKey(OptionNames::FileName), in SerializeToStructuredData()
H A DBreakpointResolver.cpp160 type_dict_sp->AddStringItem(GetSerializationSubclassKey(), GetResolverName()); in WrapOptionsDict()
/llvm-project/lldb/source/API/
H A DSBDebugger.cpp760 entry_up->AddStringItem("description", description); in AddLLVMTargets()
771 entry_up->AddStringItem("description", "A list of configured LLVM targets."); in GetBuildConfiguration()
1189 platform_dict->AddStringItem(name_str, host_platform_sp->GetPluginName()); in GetAvailablePlatformInfoAtIndex()
1190 platform_dict->AddStringItem( in GetAvailablePlatformInfoAtIndex()
1198 platform_dict->AddStringItem(name_str, llvm::StringRef(plugin_name)); in GetAvailablePlatformInfoAtIndex()
1202 platform_dict->AddStringItem(desc_str, llvm::StringRef(plugin_desc)); in DispatchInput()
/llvm-project/lldb/source/Interpreter/
H A DOptionGroupPythonClassWithDict.cpp120 m_dict_sp->AddStringItem(m_current_key, option_arg); in SetOptionValue()
H A DCommandInterpreter.cpp1916 transcript_item->AddStringItem("command", command_line); in HandleCommand()
2073 transcript_item->AddStringItem("commandName", cmd_obj->GetCommandName()); in HandleCompletionMatches()
2074 transcript_item->AddStringItem("commandArguments", remainder); in HandleCompletionMatches()
2098 transcript_item->AddStringItem("output", result.GetOutputString()); in HandleCompletionMatches()
2099 transcript_item->AddStringItem("error", result.GetErrorString()); in HandleCompletionMatches()
/llvm-project/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp992 entry_sp->AddStringItem("image", module->GetFileSpec().GetPath(false)); in ExtractAppSpecificInfo()
993 entry_sp->AddStringItem("uuid", module->GetUUID().GetAsString()); in ExtractAppSpecificInfo()
994 entry_sp->AddStringItem("message", message); in ExtractAppSpecificInfo()
995 entry_sp->AddStringItem("message2", message2); in ExtractAppSpecificInfo()
/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp218 dict_p->AddStringItem("attribute", s_filter_attributes[m_attribute_index]); in Serialize()
221 dict_p->AddStringItem("type", GetOperationType()); in Serialize()
275 dict.AddStringItem("regex", m_regex_text); in DoSerialization()
327 dict.AddStringItem("exact_text", m_match_text); in DoSerialization()
/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp1267 oso_data->AddStringItem("so_file", info.so_file.GetPath()); in DumpClangAST()
1268 oso_data->AddStringItem("oso_path", info.oso_path); in DumpClangAST()
1281 oso_data->AddStringItem("error", info.oso_load_error.AsCString()); in GetSeparateDebugInfo()
1288 d.AddStringItem("type", "oso"); in GetSeparateDebugInfo()
1289 d.AddStringItem("symfile", GetMainObjectFile()->GetFileSpec().GetPath()); in GetSeparateDebugInfo()
H A DSymbolFileDWARF.cpp4168 dwo_data->AddStringItem("dwo_name", dwo_name); in ParseCallEdgesInFunction()
4170 dwo_data->AddStringItem("error", "missing dwo name"); in ParseCallEdgesInFunction()
4176 dwo_data->AddStringItem("comp_dir", comp_dir); in ParseCallEdgesInFunction()
4179 dwo_data->AddStringItem( in Dump()
4190 dwo_data->AddStringItem( in DumpClangAST()
4194 dwo_data->AddStringItem("error",
4202 d.AddStringItem("type", "dwo"); in GetSeparateDebugInfo()
4203 d.AddStringItem("symfile", GetMainObjectFile()->GetFileSpec().GetPath()); in GetSeparateDebugInfo()
/llvm-project/lldb/include/lldb/Utility/
H A DStructuredData.h281 void AddStringItem(llvm::StringRef value) { in AddStringItem() function
529 void AddStringItem(llvm::StringRef key, llvm::StringRef value) { in AddStringItem() function
/llvm-project/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.mm951 image_info_dict_sp->AddStringItem("pathname", image_infos[i].filename);
960 image_info_dict_sp->AddStringItem("uuid", uuidstr);
964 image_info_dict_sp->AddStringItem(
966 image_info_dict_sp->AddStringItem(
996 segment_sp->AddStringItem("name",
1202 reply_sp->AddStringItem("shared_cache_uuid", uuidstr);
2542 reply_sp->AddStringItem("error",
2547 reply_sp->AddStringItem("error", "_dyld_process_info_create unavailable");
2555 reply_sp->AddStringItem(
2565 reply_sp->AddStringItem("process_stat
[all...]
/llvm-project/lldb/tools/debugserver/source/
H A DJSONGenerator.h272 void AddStringItem(std::string key, std::string value) { in AddStringItem() function
/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp154 info->AddStringItem("language", "lua"); in GetInterpreterInfo()
/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.cpp411 dictionary->AddStringItem("name", signals->GetSignalAsStringRef(signo)); in Handle_qPathComplete()

12