/llvm-project/lldb/source/API/ |
H A D | SBStructuredData.cpp | 1 //===-- SBStructuredData.cpp ----------------------------------------------===// 9 #include "lldb/API/SBStructuredData.h" 30 #pragma mark SBStructuredData 32 SBStructuredData::SBStructuredData() : m_impl_up(new StructuredDataImpl()) { in SBStructuredData() function in SBStructuredData 36 SBStructuredData::SBStructuredData(const lldb::SBStructuredData &rhs) in SBStructuredData() function in SBStructuredData 41 SBStructuredData::SBStructuredData(cons function in SBStructuredData 60 SBStructuredData::SBStructuredData(const lldb::EventSP &event_sp) SBStructuredData() function in SBStructuredData 65 SBStructuredData::SBStructuredData(const lldb_private::StructuredDataImpl &impl) SBStructuredData() function in SBStructuredData [all...] |
H A D | SBDebugger.cpp | 27 #include "lldb/API/SBStructuredData.h" 138 lldb::SBStructuredData in GetProgressDataFromEvent() 148 SBStructuredData data; in GetProgressDataFromEvent() 153 lldb::SBStructuredData in GetDiagnosticFromEvent() 163 SBStructuredData data; in GetDiagnosticFromEvent() 470 lldb::SBStructuredData SBDebugger::GetSetting(const char *setting) { in GetSetting() 473 SBStructuredData data; in GetSetting() 729 SBStructuredData in GetScriptInterpreterInfo() 732 SBStructuredData data; in GetScriptInterpreterInfo() 775 SBStructuredData SBDebugge in GetBuildConfiguration() [all...] |
H A D | SBAttachInfo.cpp | 300 lldb::SBStructuredData SBAttachInfo::GetScriptedProcessDictionary() const { in GetScriptedProcessDictionary() 305 SBStructuredData data; in GetScriptedProcessDictionary() 315 void SBAttachInfo::SetScriptedProcessDictionary(lldb::SBStructuredData dict) { in SetScriptedProcessDictionary()
|
H A D | SBTrace.cpp | 13 #include "lldb/API/SBStructuredData.h" 95 SBError SBTrace::Start(const SBStructuredData &configuration) { in Start() 107 const SBStructuredData &configuration) { in Start()
|
H A D | SBLaunchInfo.cpp | 357 lldb::SBStructuredData SBLaunchInfo::GetScriptedProcessDictionary() const { in GetScriptedProcessDictionary() 362 SBStructuredData data; in GetScriptedProcessDictionary() 372 void SBLaunchInfo::SetScriptedProcessDictionary(lldb::SBStructuredData dict) { in SetScriptedProcessDictionary()
|
H A D | SBCommandInterpreter.cpp | 562 SBStructuredData SBCommandInterpreter::GetStatistics() { in GetStatistics() 565 SBStructuredData data; in GetStatistics() 575 SBStructuredData SBCommandInterpreter::GetTranscript() { in GetTranscript() 578 SBStructuredData data; in GetTranscript()
|
/llvm-project/lldb/include/lldb/API/ |
H A D | SBStructuredData.h | 1 //===-- SBStructuredData.h --------------------------------------*- C++ -*-===// 28 class SBStructuredData { 30 SBStructuredData(); 32 SBStructuredData(const lldb::SBStructuredData &rhs); 34 SBStructuredData(const lldb::SBScriptObject obj, 37 ~SBStructuredData(); 39 lldb::SBStructuredData &operator=(const lldb::SBStructuredData &rhs); 69 lldb::SBStructuredData GetValueForKe [all...] |
H A D | SBDebugger.h | 107 static lldb::SBStructuredData 110 static lldb::SBStructuredData 144 /// Getting a specific setting value into SBStructuredData format. 148 /// lldb::SBStructuredData settings = debugger.GetSetting(); 149 /// lldb::SBStructuredData settings = debugger.GetSetting(nullptr); 150 /// lldb::SBStructuredData settings = debugger.GetSetting(""); 151 /// lldb::SBStructuredData settings = debugger.GetSetting("target.arg0"); 152 /// lldb::SBStructuredData settings = debugger.GetSetting("target"); 157 lldb::SBStructuredData GetSetting(const char *setting = nullptr); 291 lldb::SBStructuredData GetAvailablePlatformInfoAtInde 505 friend class SBStructuredData; global() variable [all...] |
H A D | SBTrace.h | 90 SBError Start(const SBStructuredData &configuration); 110 SBError Start(const SBThread &thread, const SBStructuredData &configuration);
|
H A D | SBAttachInfo.h | 194 lldb::SBStructuredData GetScriptedProcessDictionary() const; 196 void SetScriptedProcessDictionary(lldb::SBStructuredData dict);
|
H A D | SBLaunchInfo.h | 205 lldb::SBStructuredData GetScriptedProcessDictionary() const; 207 void SetScriptedProcessDictionary(lldb::SBStructuredData dict);
|
H A D | SBThreadPlan.h | 34 lldb::SBStructuredData &args_data); 116 lldb::SBStructuredData &args_data,
|
H A D | SBBreakpoint.h | 107 SBStructuredData &extra_args); 155 SBStructuredData SerializeToStructuredData();
|
H A D | SBCommandInterpreter.h | 317 SBStructuredData GetStatistics(); 332 SBStructuredData GetTranscript();
|
H A D | SBScriptObject.h | 41 friend class SBStructuredData;
|
H A D | SBStringList.h | 50 friend class SBStructuredData; variable
|
/llvm-project/lldb/test/API/python_api/sbstructureddata/ |
H A D | TestStructuredDataAPI.py | 2 Test some SBStructuredData API. 37 example = lldb.SBStructuredData() 55 dict_struct = lldb.SBStructuredData() 101 sd = lldb.SBStructuredData(stp, self.dbg) 113 example = lldb.SBStructuredData() 145 invalid_struct = lldb.SBStructuredData() 155 # Check API returning a valid SBStructuredData of 'dictionary' type 156 dict_struct = lldb.SBStructuredData() 170 string_struct = lldb.SBStructuredData() 184 # Calling wrong API on a SBStructuredData [all...] |
/llvm-project/lldb/bindings/interface/ |
H A D | SBStructuredDataExtensions.i | 1 STRING_EXTENSION_OUTSIDE(SBStructuredData) 3 %extend lldb::SBStructuredData {
|
H A D | SBStructuredDataDocstrings.i | 5 ) lldb::SBStructuredData;
|
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_command/ |
H A D | TestBreakpointCommandsFromPython.py | 115 extra_args = lldb.SBStructuredData() 136 empty_args = lldb.SBStructuredData() 198 extra_args = lldb.SBStructuredData()
|
/llvm-project/lldb/bindings/python/ |
H A D | python-swigsafecast.swig | 45 PythonObject SWIGBridge::ToSWIGWrapper(std::unique_ptr<lldb::SBStructuredData> data_sb) { 50 return ToSWIGWrapper(std::unique_ptr<lldb::SBStructuredData>(new lldb::SBStructuredData(data_impl)));
|
/llvm-project/lldb/test/API/functionalities/interactive_scripted_process/ |
H A D | interactive_scripted_process.py | 20 def __init__(self, exe_ctx: lldb.SBExecutionContext, args: lldb.SBStructuredData): argument 92 structured_data = lldb.SBStructuredData() 140 def __init__(self, exe_ctx: lldb.SBExecutionContext, args: lldb.SBStructuredData): argument 298 structured_data = lldb.SBStructuredData()
|
/llvm-project/lldb/bindings/lua/ |
H A D | lua-swigsafecast.swig | 17 void PushSBClass(lua_State *L, lldb::SBStructuredData *structured_data_sb) {
|
/llvm-project/lldb/test/API/functionalities/scripted_process/ |
H A D | stack_core_scripted_process.py | 17 def __init__(self, exe_ctx: lldb.SBExecutionContext, args: lldb.SBStructuredData): argument 32 structured_data = lldb.SBStructuredData()
|
/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | SWIGPythonBridge.h | 32 class SBStructuredData; variable 110 ToSWIGWrapper(std::unique_ptr<lldb::SBStructuredData> data_sb);
|