Home
last modified time | relevance | path

Searched refs:SBStructuredData (Results 1 – 25 of 54) sorted by relevance

123

/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBStructuredData.cpp25 #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::
49 operator=(const lldb::SBStructuredData &rhs) { in operator =()
56 lldb::SBError SBStructuredData::SetFromJSON(lldb::SBStream &stream) { in SetFromJSON()
70 lldb::SBError SBStructuredData::SetFromJSON(const char *json) { in SetFromJSON()
[all …]
H A DSBTrace.cpp90 SBError SBTrace::Start(const SBStructuredData &configuration) { in Start()
102 const SBStructuredData &configuration) { in Start()
H A DSBLaunchInfo.cpp346 lldb::SBStructuredData SBLaunchInfo::GetScriptedProcessDictionary() const { in GetScriptedProcessDictionary()
352 SBStructuredData data; in GetScriptedProcessDictionary()
358 void SBLaunchInfo::SetScriptedProcessDictionary(lldb::SBStructuredData dict) { in SetScriptedProcessDictionary()
H A DSBDebugger.cpp171 lldb::SBStructuredData
186 SBStructuredData data; in GetDiagnosticFromEvent()
454 lldb::SBStructuredData SBDebugger::GetSetting(const char *setting) { in GetSetting()
457 SBStructuredData data; in GetSetting()
714 SBStructuredData
717 SBStructuredData data; in GetScriptInterpreterInfo()
760 SBStructuredData SBDebugger::GetBuildConfiguration() { in GetBuildConfiguration()
787 SBStructuredData data; in GetBuildConfiguration()
1158 SBStructuredData SBDebugger::GetAvailablePlatformInfoAtIndex(uint32_t idx) { in GetAvailablePlatformInfoAtIndex()
1161 SBStructuredData data; in GetAvailablePlatformInfoAtIndex()
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBStructuredData.h17 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 DSBDebugger.h86 static lldb::SBStructuredData
133 lldb::SBStructuredData GetSetting(const char *setting = nullptr);
248 lldb::SBStructuredData GetAvailablePlatformInfoAtIndex(uint32_t idx);
278 SBStructuredData GetScriptInterpreterInfo(ScriptLanguage);
284 static SBStructuredData GetBuildConfiguration();
H A DSBTrace.h92 SBError Start(const SBStructuredData &configuration);
112 SBError Start(const SBThread &thread, const SBStructuredData &configuration);
H A DSBLaunchInfo.h178 lldb::SBStructuredData GetScriptedProcessDictionary() const;
180 void SetScriptedProcessDictionary(lldb::SBStructuredData dict);
H A DSBThreadPlan.h30 lldb::SBStructuredData &args_data);
112 lldb::SBStructuredData &args_data,
H A DSBBreakpoint.h100 SBStructuredData &extra_args);
146 SBStructuredData SerializeToStructuredData();
H A DSBProcess.h212 static lldb::SBStructuredData
225 SBStructuredData GetExtendedCrashInformation();
H A DSBBreakpointLocation.h61 lldb::SBStructuredData &extra_args);
H A DSBBreakpointName.h89 SBStructuredData &extra_args);
H A DSBError.h78 friend class SBStructuredData; variable
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBStructuredData.i15 ) 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 DSBTrace.i24 SBError Start(const SBStructuredData &configuration);
26 SBError Start(const SBThread &thread, const SBStructuredData &configuration);
H A DSBDebugger.i134 static lldb::SBStructuredData GetDiagnosticFromEvent(const lldb::SBEvent &event);
228 lldb::SBStructuredData GetSetting(const char *setting = nullptr);
362 lldb::SBStructuredData
405 static SBStructuredData GetBuildConfiguration();
506 SBStructuredData GetScriptInterpreterInfo(ScriptLanguage);
H A DSBLaunchInfo.i144 lldb::SBStructuredData
147 void SetScriptedProcessDictionary(lldb::SBStructuredData dict);
H A DSBBreakpoint.i191 SBStructuredData &extra_args);
240 SBStructuredData SBBreakpoint::SerializeToStructuredData();
H A DSBBreakpointName.i89 SBStructuredData &extra_args);
H A DSBBreakpointLocation.i87 SBStructuredData &extra_args);
H A DSBThreadPlan.i128 SBStructuredData &args_data,
/openbsd-src/gnu/llvm/lldb/bindings/python/
H A Dpython-swigsafecast.swig44 PythonObject ToSWIGWrapper(std::unique_ptr<lldb::SBStructuredData> data_sb) {
49 return ToSWIGWrapper(std::make_unique<lldb::SBStructuredData>(data_impl));
/openbsd-src/gnu/llvm/lldb/bindings/lua/
H A Dlua-swigsafecast.swig17 void PushSBClass(lua_State *L, lldb::SBStructuredData *structured_data_sb) {
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h32 class SBStructuredData; variable
82 PythonObject ToSWIGWrapper(std::unique_ptr<lldb::SBStructuredData> data_sb);

123