| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBStructuredData.cpp | 25 #pragma mark SBStructuredData 27 SBStructuredData::SBStructuredData() : m_impl_up(new StructuredDataImpl()) { in SBStructuredData() function in SBStructuredData 31 SBStructuredData::SBStructuredData(const lldb::SBStructuredData &rhs) in SBStructuredData() function in SBStructuredData 36 SBStructuredData::SBStructuredData(const lldb::EventSP &event_sp) in SBStructuredData() function in SBStructuredData 41 SBStructuredData::SBStructuredData(const lldb_private::StructuredDataImpl &impl) in SBStructuredData() function in SBStructuredData 46 SBStructuredData::~SBStructuredData() = default; 48 SBStructuredData &SBStructuredData:: 149 lldb::SBStructuredData SBStructuredData::GetValueForKey(const char *key) const { in GetValueForKey() 152 SBStructuredData result; in GetValueForKey() 157 lldb::SBStructuredData SBStructuredData::GetItemAtIndex(size_t idx) const { in GetItemAtIndex() [all …]
|
| H A D | SBTrace.cpp | 69 SBError SBTrace::Start(const SBStructuredData &configuration) { in Start() 81 const SBStructuredData &configuration) { in Start()
|
| H A D | SBLaunchInfo.cpp | 346 lldb::SBStructuredData SBLaunchInfo::GetScriptedProcessDictionary() const { in GetScriptedProcessDictionary() 352 SBStructuredData data; in GetScriptedProcessDictionary() 358 void SBLaunchInfo::SetScriptedProcessDictionary(lldb::SBStructuredData dict) { in SetScriptedProcessDictionary()
|
| H A D | SBDebugger.cpp | 170 lldb::SBStructuredData 185 SBStructuredData data; in GetDiagnosticFromEvent() 676 SBStructuredData 679 SBStructuredData data; in GetScriptInterpreterInfo() 722 SBStructuredData SBDebugger::GetBuildConfiguration() { in GetBuildConfiguration() 749 SBStructuredData data; in GetBuildConfiguration() 1120 SBStructuredData SBDebugger::GetAvailablePlatformInfoAtIndex(uint32_t idx) { in GetAvailablePlatformInfoAtIndex() 1123 SBStructuredData data; in GetAvailablePlatformInfoAtIndex()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBStructuredData.h | 17 class SBStructuredData { 19 SBStructuredData(); 21 SBStructuredData(const lldb::SBStructuredData &rhs); 23 SBStructuredData(const lldb::EventSP &event_sp); 25 SBStructuredData(const lldb_private::StructuredDataImpl &impl); 27 ~SBStructuredData(); 29 lldb::SBStructuredData &operator=(const lldb::SBStructuredData &rhs); 59 lldb::SBStructuredData GetValueForKey(const char *key) const; 63 lldb::SBStructuredData GetItemAtIndex(size_t idx) const;
|
| H A D | SBTrace.h | 77 SBError Start(const SBStructuredData &configuration); 97 SBError Start(const SBThread &thread, const SBStructuredData &configuration);
|
| H A D | SBDebugger.h | 86 static lldb::SBStructuredData 231 lldb::SBStructuredData GetAvailablePlatformInfoAtIndex(uint32_t idx); 261 SBStructuredData GetScriptInterpreterInfo(ScriptLanguage); 267 static SBStructuredData GetBuildConfiguration();
|
| H A D | SBLaunchInfo.h | 178 lldb::SBStructuredData GetScriptedProcessDictionary() const; 180 void SetScriptedProcessDictionary(lldb::SBStructuredData dict);
|
| H A D | SBThreadPlan.h | 30 lldb::SBStructuredData &args_data); 112 lldb::SBStructuredData &args_data,
|
| H A D | SBBreakpoint.h | 100 SBStructuredData &extra_args); 146 SBStructuredData SerializeToStructuredData();
|
| H A D | SBProcess.h | 212 static lldb::SBStructuredData 225 SBStructuredData GetExtendedCrashInformation();
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBStructuredData.i | 15 ) SBStructuredData; 16 class SBStructuredData 19 SBStructuredData(); 21 SBStructuredData(const lldb::SBStructuredData &rhs); 23 SBStructuredData(const lldb::EventSP &event_sp); 25 ~SBStructuredData(); 41 lldb::SBStructuredData GetValueForKey(const char *key) const; 43 lldb::SBStructuredData GetItemAtIndex(size_t idx) const;
|
| H A D | SBTrace.i | 22 SBError Start(const SBStructuredData &configuration); 24 SBError Start(const SBThread &thread, const SBStructuredData &configuration);
|
| H A D | SBLaunchInfo.i | 144 lldb::SBStructuredData 147 void SetScriptedProcessDictionary(lldb::SBStructuredData dict);
|
| H A D | SBDebugger.i | 134 static lldb::SBStructuredData GetDiagnosticFromEvent(const lldb::SBEvent &event); 360 lldb::SBStructuredData 403 static SBStructuredData GetBuildConfiguration(); 504 SBStructuredData GetScriptInterpreterInfo(ScriptLanguage);
|
| H A D | SBBreakpoint.i | 191 SBStructuredData &extra_args); 240 SBStructuredData SBBreakpoint::SerializeToStructuredData();
|
| H A D | SBBreakpointName.i | 89 SBStructuredData &extra_args);
|
| H A D | SBBreakpointLocation.i | 87 SBStructuredData &extra_args);
|
| /llvm-project-15.0.7/lldb/test/API/python_api/sbstructureddata/ |
| H A D | TestStructuredDataAPI.py | 24 example = lldb.SBStructuredData() 42 dict_struct = lldb.SBStructuredData() 64 invalid_struct = lldb.SBStructuredData() 75 dict_struct = lldb.SBStructuredData() 90 string_struct = lldb.SBStructuredData() 115 int_struct = lldb.SBStructuredData() 139 floating_point_struct = lldb.SBStructuredData() 155 bool_struct = lldb.SBStructuredData() 171 array_struct = lldb.SBStructuredData()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_command/ |
| H A D | TestBreakpointCommandsFromPython.py | 106 extra_args = lldb.SBStructuredData() 122 empty_args = lldb.SBStructuredData() 175 extra_args = lldb.SBStructuredData()
|
| /llvm-project-15.0.7/lldb/bindings/lua/ |
| H A D | lua-swigsafecast.swig | 17 void PushSBClass(lua_State *L, lldb::SBStructuredData *structured_data_sb) {
|
| /llvm-project-15.0.7/lldb/bindings/python/ |
| H A D | python-swigsafecast.swig | 62 PythonObject ToSWIGWrapper(std::unique_ptr<lldb::SBStructuredData> data_sb) { 67 return ToSWIGWrapper(std::make_unique<lldb::SBStructuredData>(data_impl));
|
| /llvm-project-15.0.7/lldb/unittests/API/ |
| H A D | SBStructuredDataTest.cpp | 22 SBStructuredData data(nullptr); in TEST_F()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/ |
| H A D | stack_core_scripted_process.py | 16 def __init__(self, target: lldb.SBTarget, args : lldb.SBStructuredData): argument 31 structured_data = lldb.SBStructuredData()
|
| /llvm-project-15.0.7/lldb/test/Shell/ScriptInterpreter/Lua/ |
| H A D | breakpoint_function_callback.test | 15 # CHECK: <userdata of type 'lldb::SBStructuredData *' at {{0x[[:xdigit:]]+}}>
|