Home
last modified time | relevance | path

Searched refs:DictionarySP (Results 1 – 25 of 55) sorted by relevance

123

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPlatformPythonInterface.cpp35 StructuredData::DictionarySP args_sp, StructuredData::Generic *script_obj) { in CreatePluginObject()
43 StructuredData::DictionarySP ScriptedPlatformPythonInterface::ListProcesses() { in ListProcesses()
45 StructuredData::DictionarySP dict_sp = in ListProcesses()
46 Dispatch<StructuredData::DictionarySP>("list_processes", error); in ListProcesses()
49 return ScriptedInterface::ErrorWithMessage<StructuredData::DictionarySP>( in ListProcesses()
60 StructuredData::DictionarySP
63 StructuredData::DictionarySP dict_sp = in GetProcessInfo()
64 Dispatch<StructuredData::DictionarySP>("get_process_info", error, pid); in GetProcessInfo()
67 return ScriptedInterface::ErrorWithMessage<StructuredData::DictionarySP>( in GetProcessInfo()
H A DScriptedProcessPythonInterface.cpp39 StructuredData::DictionarySP args_sp, StructuredData::Generic *script_obj) { in CreatePluginObject()
47 StructuredData::DictionarySP ScriptedProcessPythonInterface::GetCapabilities() { in GetCapabilities()
49 StructuredData::DictionarySP dict = in GetCapabilities()
50 Dispatch<StructuredData::DictionarySP>("get_capabilities", error); in GetCapabilities()
88 StructuredData::DictionarySP ScriptedProcessPythonInterface::GetThreadsInfo() { in GetThreadsInfo()
90 StructuredData::DictionarySP dict = in GetThreadsInfo()
91 Dispatch<StructuredData::DictionarySP>("get_threads_info", error); in GetThreadsInfo()
191 StructuredData::DictionarySP ScriptedProcessPythonInterface::GetMetadata() { in GetMetadata()
193 StructuredData::DictionarySP dict = in GetMetadata()
194 Dispatch<StructuredData::DictionarySP>("get_process_metadata", error); in GetMetadata()
H A DScriptedThreadPythonInterface.cpp35 StructuredData::DictionarySP args_sp, StructuredData::Generic *script_obj) { in CreatePluginObject()
83 StructuredData::DictionarySP ScriptedThreadPythonInterface::GetStopReason() { in GetStopReason()
85 StructuredData::DictionarySP dict = in GetStopReason()
86 Dispatch<StructuredData::DictionarySP>("get_stop_reason", error); in GetStopReason()
105 StructuredData::DictionarySP ScriptedThreadPythonInterface::GetRegisterInfo() { in GetRegisterInfo()
107 StructuredData::DictionarySP dict = in GetRegisterInfo()
108 Dispatch<StructuredData::DictionarySP>("get_register_info", error); in GetRegisterInfo()
H A DOperatingSystemPythonInterface.cpp35 StructuredData::DictionarySP args_sp, StructuredData::Generic *script_obj) { in CreatePluginObject()
40 StructuredData::DictionarySP
44 StructuredData::DictionarySP dict = Dispatch<StructuredData::DictionarySP>( in CreateThread()
66 StructuredData::DictionarySP OperatingSystemPythonInterface::GetRegisterInfo() { in GetRegisterInfo()
H A DScriptedProcessPythonInterface.h29 StructuredData::DictionarySP args_sp,
37 StructuredData::DictionarySP GetCapabilities() override;
49 StructuredData::DictionarySP GetThreadsInfo() override;
68 StructuredData::DictionarySP GetMetadata() override;
H A DScriptedPlatformPythonInterface.h28 StructuredData::DictionarySP args_sp,
37 StructuredData::DictionarySP ListProcesses() override;
39 StructuredData::DictionarySP GetProcessInfo(lldb::pid_t) override;
H A DOperatingSystemPythonInterface.h29 StructuredData::DictionarySP args_sp,
36 StructuredData::DictionarySP CreateThread(lldb::tid_t tid,
41 StructuredData::DictionarySP GetRegisterInfo() override;
H A DScriptedThreadPythonInterface.h28 StructuredData::DictionarySP args_sp,
44 StructuredData::DictionarySP GetStopReason() override;
48 StructuredData::DictionarySP GetRegisterInfo() override;
H A DScriptedPythonInterface.cpp38 StructuredData::DictionarySP
40 StructuredData::DictionarySP>(python::PythonObject &p, Status &error) { in ExtractValueFromPythonObject()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/Interfaces/
H A DScriptedProcessInterface.h26 StructuredData::DictionarySP args_sp,
29 virtual StructuredData::DictionarySP GetCapabilities() { return {}; } in GetCapabilities()
45 virtual StructuredData::DictionarySP GetThreadsInfo() { return {}; } in GetThreadsInfo()
73 virtual StructuredData::DictionarySP GetMetadata() { return {}; } in GetMetadata()
H A DScriptedPlatformInterface.h24 StructuredData::DictionarySP args_sp,
27 virtual StructuredData::DictionarySP ListProcesses() { return {}; } in ListProcesses()
29 virtual StructuredData::DictionarySP GetProcessInfo(lldb::pid_t) { in GetProcessInfo()
H A DScriptedThreadInterface.h25 StructuredData::DictionarySP args_sp,
36 virtual StructuredData::DictionarySP GetStopReason() { return {}; } in GetStopReason()
40 virtual StructuredData::DictionarySP GetRegisterInfo() { return {}; } in GetRegisterInfo()
H A DOperatingSystemInterface.h20 virtual StructuredData::DictionarySP CreateThread(lldb::tid_t tid, in CreateThread()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DScriptedMetadata.h19 StructuredData::DictionarySP dict_sp) in ScriptedMetadata()
33 StructuredData::DictionarySP GetArgsSP() const { return m_args_sp; } in GetArgsSP()
37 StructuredData::DictionarySP m_args_sp;
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupPythonClassWithDict.h53 const StructuredData::DictionarySP GetStructuredData() { in GetStructuredData()
63 StructuredData::DictionarySP m_dict_sp;
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DSearchFilter.h251 StructuredData::DictionarySP
252 WrapOptionsDict(StructuredData::DictionarySP options_dict_sp);
254 void SerializeFileSpecList(StructuredData::DictionarySP &options_dict_sp,
396 void SerializeUnwrapped(StructuredData::DictionarySP &options_dict_sp);
H A DDebuggerEvents.h38 static StructuredData::DictionarySP
102 static StructuredData::DictionarySP
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp149 StructuredData::DictionarySP BreakpointResolver::WrapOptionsDict( in WrapOptionsDict()
150 StructuredData::DictionarySP options_dict_sp) { in WrapOptionsDict()
152 return StructuredData::DictionarySP(); in WrapOptionsDict()
154 StructuredData::DictionarySP type_dict_sp(new StructuredData::Dictionary()); in WrapOptionsDict()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp229 const StructuredData::DictionarySP &dict)> const in ConvertToStructuredArray()
266 const StructuredData::DictionarySP &dict) { in GetRenumberedThreadIds()
354 const StructuredData::DictionarySP &dict) { in RetrieveReportData()
367 const StructuredData::DictionarySP &dict) { in RetrieveReportData()
395 const StructuredData::DictionarySP &dict) { in RetrieveReportData()
428 [](const ValueObjectSP &o, const StructuredData::DictionarySP &dict) { in RetrieveReportData()
448 const StructuredData::DictionarySP &dict) { in RetrieveReportData()
476 const StructuredData::DictionarySP &dict) { in RetrieveReportData()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolver.h121 StructuredData::DictionarySP
122 WrapOptionsDict(StructuredData::DictionarySP options_dict_sp);
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebuggerEvents.cpp53 StructuredData::DictionarySP
109 StructuredData::DictionarySP
H A DSearchFilter.cpp172 StructuredData::DictionarySP
173 SearchFilter::WrapOptionsDict(StructuredData::DictionarySP options_dict_sp) { in WrapOptionsDict()
175 return StructuredData::DictionarySP(); in WrapOptionsDict()
185 StructuredData::DictionarySP &options_dict_sp, OptionNames name, in SerializeFileSpecList()
612 StructuredData::DictionarySP &options_dict_sp) { in SerializeUnwrapped()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp325 StructuredData::DictionarySP thread_info_sp = GetInterface().GetThreadsInfo(); in DoUpdateThreadList()
506 lldb_private::StructuredData::DictionarySP ScriptedProcess::GetMetadata() { in GetMetadata()
507 StructuredData::DictionarySP metadata_sp = GetInterface().GetMetadata(); in GetMetadata()
511 return ScriptedInterface::ErrorWithMessage<StructuredData::DictionarySP>( in GetMetadata()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBLaunchInfo.cpp351 StructuredData::DictionarySP dict_sp = in SetScriptedProcessClassName()
366 lldb_private::StructuredData::DictionarySP dict_sp = metadata_sp->GetArgsSP(); in GetScriptedProcessDictionary()
382 StructuredData::DictionarySP dict_sp = in SetScriptedProcessDictionary()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.h48 StructuredData::DictionarySP GetInterpreterInfo() override;

123