Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DScriptedProcessInterface.h25 StructuredData::DictionarySP args_sp,
44 virtual StructuredData::DictionarySP GetThreadsInfo() { return nullptr; } in GetThreadsInfo()
46 virtual StructuredData::DictionarySP GetThreadWithID(lldb::tid_t tid) { in GetThreadWithID()
50 virtual StructuredData::DictionarySP GetRegistersForThread(lldb::tid_t tid) { in GetRegistersForThread()
80 StructuredData::DictionarySP args_sp,
93 virtual StructuredData::DictionarySP GetStopReason() { return nullptr; } in GetStopReason()
97 virtual StructuredData::DictionarySP GetRegisterInfo() { return nullptr; } in GetRegisterInfo()
H A DScriptInterpreter.h151 virtual StructuredData::DictionarySP GetInterpreterInfo();
253 virtual StructuredData::DictionarySP
255 return StructuredData::DictionarySP(); in OSPlugin_RegisterInfo()
269 virtual StructuredData::DictionarySP
272 return StructuredData::DictionarySP(); in OSPlugin_CreateThread()
353 virtual StructuredData::DictionarySP
356 return StructuredData::DictionarySP(); in GetDynamicSettings()
H A DOptionGroupPythonClassWithDict.h53 const StructuredData::DictionarySP GetStructuredData() { in GetStructuredData()
63 StructuredData::DictionarySP m_dict_sp;
H A DScriptedInterface.h30 StructuredData::DictionarySP args_sp,
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedThreadPythonInterface.cpp33 StructuredData::DictionarySP args_sp, StructuredData::Generic *script_obj) { in CreatePluginObject()
103 StructuredData::DictionarySP ScriptedThreadPythonInterface::GetStopReason() { in GetStopReason()
105 StructuredData::DictionarySP dict = in GetStopReason()
106 Dispatch<StructuredData::DictionarySP>("get_stop_reason", error); in GetStopReason()
125 StructuredData::DictionarySP ScriptedThreadPythonInterface::GetRegisterInfo() { in GetRegisterInfo()
127 StructuredData::DictionarySP dict = in GetRegisterInfo()
128 Dispatch<StructuredData::DictionarySP>("get_register_info", error); in GetRegisterInfo()
H A DScriptedProcessPythonInterface.cpp34 StructuredData::DictionarySP args_sp, StructuredData::Generic *script_obj) { in CreatePluginObject()
91 StructuredData::DictionarySP ScriptedProcessPythonInterface::GetThreadsInfo() { in GetThreadsInfo()
93 StructuredData::DictionarySP dict = in GetThreadsInfo()
94 Dispatch<StructuredData::DictionarySP>("get_threads_info", error); in GetThreadsInfo()
102 StructuredData::DictionarySP
110 StructuredData::DictionarySP dict{obj->GetAsDictionary()}; in GetThreadWithID()
115 StructuredData::DictionarySP
H A DScriptedProcessPythonInterface.h28 StructuredData::DictionarySP args_sp,
43 StructuredData::DictionarySP GetThreadsInfo() override;
45 StructuredData::DictionarySP GetThreadWithID(lldb::tid_t tid) override;
47 StructuredData::DictionarySP GetRegistersForThread(lldb::tid_t tid) override;
H A DScriptedThreadPythonInterface.h27 StructuredData::DictionarySP args_sp,
38 StructuredData::DictionarySP GetStopReason() override;
42 StructuredData::DictionarySP GetRegisterInfo() override;
H A DScriptedPythonInterface.cpp46 StructuredData::DictionarySP
48 StructuredData::DictionarySP>(python::PythonObject &p, Status &error) { in ExtractValueFromPythonObject()
H A DScriptedPythonInterface.h135 StructuredData::DictionarySP
137 StructuredData::DictionarySP>(python::PythonObject &p, Status &error);
H A DScriptInterpreterPython.cpp1509 return StructuredData::DictionarySP(); in OSPlugin_RegisterInfo()
1519 return StructuredData::DictionarySP(); in OSPlugin_RegisterInfo()
1528 return StructuredData::DictionarySP(); in OSPlugin_RegisterInfo()
1534 return StructuredData::DictionarySP(); in OSPlugin_RegisterInfo()
1554 return StructuredData::DictionarySP(); in OSPlugin_RegisterInfo()
1681 return StructuredData::DictionarySP(); in OSPlugin_CreateThread()
1691 return StructuredData::DictionarySP(); in OSPlugin_CreateThread()
1700 return StructuredData::DictionarySP(); in OSPlugin_CreateThread()
1705 return StructuredData::DictionarySP(); in OSPlugin_CreateThread()
1726 return StructuredData::DictionarySP(); in OSPlugin_CreateThread()
[all …]
H A DScriptInterpreterPython.h48 StructuredData::DictionarySP GetInterpreterInfo() override;
H A DScriptInterpreterPythonImpl.h131 StructuredData::DictionarySP
141 StructuredData::DictionarySP
149 StructuredData::DictionarySP
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DProcessLaunchInfo.h159 lldb_private::StructuredData::DictionarySP
165 lldb_private::StructuredData::DictionarySP dictionary_sp) { in SetScriptedProcessDictionarySP()
184 StructuredData::DictionarySP
/llvm-project-15.0.7/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);
/llvm-project-15.0.7/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()
H A DBreakpointResolverScripted.cpp89 StructuredData::DictionarySP options_dict_sp( in SerializeToStructuredData()
/llvm-project-15.0.7/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.h32 StructuredData::DictionarySP GetArgsSP() const { return m_args_sp; } in GetArgsSP()
36 StructuredData::DictionarySP m_args_sp;
H A DScriptedThread.cpp218 StructuredData::DictionarySP dict_sp = GetInterface()->GetStopReason(); in CalculateStopInfo()
297 StructuredData::DictionarySP reg_info = GetInterface()->GetRegisterInfo(); in GetDynamicRegisterInfo()
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpointResolver.h120 StructuredData::DictionarySP
121 WrapOptionsDict(StructuredData::DictionarySP options_dict_sp);
/llvm-project-15.0.7/lldb/source/Core/
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()
/llvm-project-15.0.7/lldb/source/API/
H A DSBLaunchInfo.cpp349 lldb_private::StructuredData::DictionarySP dict_sp = in GetScriptedProcessDictionary()
368 StructuredData::DictionarySP dict_sp = in SetScriptedProcessDictionary()
/llvm-project-15.0.7/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp126 StructuredData::DictionarySP dictionary = in GetDynamicRegisterInfo()
392 StructuredData::DictionarySP thread_info_dict = in CreateThread()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.h52 StructuredData::DictionarySP GetInterpreterInfo() override;
/llvm-project-15.0.7/lldb/source/Target/
H A DThreadSpec.cpp54 StructuredData::DictionarySP data_dict_sp(new StructuredData::Dictionary()); in SerializeToStructuredData()

12