/external/llvm-project/lldb/source/API/ |
D | SBStructuredData.cpp | 25 #pragma mark SBStructuredData 27 SBStructuredData::SBStructuredData() : m_impl_up(new StructuredDataImpl()) { in SBStructuredData() function in SBStructuredData 28 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBStructuredData); in SBStructuredData() 31 SBStructuredData::SBStructuredData(const lldb::SBStructuredData &rhs) in SBStructuredData() function in SBStructuredData 33 LLDB_RECORD_CONSTRUCTOR(SBStructuredData, (const lldb::SBStructuredData &), in SBStructuredData() 37 SBStructuredData::SBStructuredData(const lldb::EventSP &event_sp) in SBStructuredData() function in SBStructuredData 39 LLDB_RECORD_CONSTRUCTOR(SBStructuredData, (const lldb::EventSP &), event_sp); in SBStructuredData() 42 SBStructuredData::SBStructuredData(lldb_private::StructuredDataImpl *impl) in SBStructuredData() function in SBStructuredData 44 LLDB_RECORD_CONSTRUCTOR(SBStructuredData, in SBStructuredData() 48 SBStructuredData::~SBStructuredData() = default; [all …]
|
D | SBTraceOptions.cpp | 45 lldb::SBStructuredData SBTraceOptions::getTraceParams(lldb::SBError &error) { in getTraceParams() 46 LLDB_RECORD_METHOD(lldb::SBStructuredData, SBTraceOptions, getTraceParams, in getTraceParams() 52 lldb::SBStructuredData structData; in getTraceParams() 69 void SBTraceOptions::setTraceParams(lldb::SBStructuredData ¶ms) { in setTraceParams() 71 (lldb::SBStructuredData &), params); in setTraceParams() 142 LLDB_REGISTER_METHOD(lldb::SBStructuredData, SBTraceOptions, getTraceParams, in RegisterMethods() 147 (lldb::SBStructuredData &)); in RegisterMethods()
|
D | SBThreadPlan.cpp | 77 lldb::SBStructuredData &args_data) { in SBThreadPlan() 79 SBStructuredData &), in SBThreadPlan() 430 lldb::SBStructuredData &args_data, in QueueThreadPlanForStepScripted() 434 (const char *, lldb::SBStructuredData &, lldb::SBError &), in QueueThreadPlanForStepScripted() 466 lldb::SBStructuredData &)); in RegisterMethods() 514 (const char *, lldb::SBStructuredData &, in RegisterMethods()
|
D | SBBreakpoint.cpp | 588 SBStructuredData SBBreakpoint::SerializeToStructuredData() { in SerializeToStructuredData() 589 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBStructuredData, SBBreakpoint, in SerializeToStructuredData() 592 SBStructuredData data; in SerializeToStructuredData() 623 SBStructuredData empty_args; in SetScriptCallbackFunction() 629 SBStructuredData &extra_args) { in SetScriptCallbackFunction() 631 (const char *, SBStructuredData &), callback_function_name, extra_args); in SetScriptCallbackFunction() 1046 LLDB_REGISTER_METHOD(lldb::SBStructuredData, SBBreakpoint, in RegisterMethods() 1051 (const char *, SBStructuredData &)); in RegisterMethods()
|
D | SBBreakpointName.cpp | 574 SBStructuredData empty_args; in SetScriptCallbackFunction() 580 SBStructuredData &extra_args) { in SetScriptCallbackFunction() 582 (const char *, SBStructuredData &), in SetScriptCallbackFunction() 752 (const char *, SBStructuredData &)); in RegisterMethods()
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBStructuredData.h | 17 class SBStructuredData { 19 SBStructuredData(); 21 SBStructuredData(const lldb::SBStructuredData &rhs); 23 SBStructuredData(const lldb::EventSP &event_sp); 25 SBStructuredData(lldb_private::StructuredDataImpl *impl); 27 ~SBStructuredData(); 29 lldb::SBStructuredData &operator=(const lldb::SBStructuredData &rhs); 57 lldb::SBStructuredData GetValueForKey(const char *key) const; 61 lldb::SBStructuredData GetItemAtIndex(size_t idx) const;
|
D | SBTraceOptions.h | 28 lldb::SBStructuredData getTraceParams(lldb::SBError &error); 35 void setTraceParams(lldb::SBStructuredData ¶ms);
|
D | SBThreadPlan.h | 32 lldb::SBStructuredData &args_data); 111 lldb::SBStructuredData &args_data,
|
D | SBBreakpoint.h | 100 SBStructuredData &extra_args); 146 SBStructuredData SerializeToStructuredData();
|
D | SBDebugger.h | 182 lldb::SBStructuredData GetAvailablePlatformInfoAtIndex(uint32_t idx); 216 static SBStructuredData GetBuildConfiguration();
|
D | SBProcess.h | 212 static lldb::SBStructuredData 225 SBStructuredData GetExtendedCrashInformation();
|
D | SBBreakpointLocation.h | 59 lldb::SBStructuredData &extra_args);
|
D | SBError.h | 67 friend class SBStructuredData; variable
|
D | SBBreakpointName.h | 89 SBStructuredData &extra_args);
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBStructuredData.i | 16 ) SBStructuredData; 17 class SBStructuredData 20 SBStructuredData(); 22 SBStructuredData(const lldb::SBStructuredData &rhs); 24 SBStructuredData(const lldb::EventSP &event_sp); 26 ~SBStructuredData(); 42 lldb::SBStructuredData GetValueForKey(const char *key) const; 44 lldb::SBStructuredData GetItemAtIndex(size_t idx) const;
|
D | SBTraceOptions.i | 19 lldb::SBStructuredData getTraceParams(lldb::SBError &error); 23 void setTraceParams(lldb::SBStructuredData ¶ms);
|
D | SBBreakpoint.i | 191 SBStructuredData &extra_args); 240 SBStructuredData SBBreakpoint::SerializeToStructuredData();
|
D | SBBreakpointName.i | 89 SBStructuredData &extra_args);
|
D | SBBreakpointLocation.i | 87 SBStructuredData &extra_args);
|
D | SBDebugger.i | 338 lldb::SBStructuredData 381 static SBStructuredData GetBuildConfiguration();
|
D | SBThreadPlan.i | 125 SBStructuredData &args_data,
|
/external/llvm-project/lldb/test/API/python_api/sbstructureddata/ |
D | TestStructuredDataAPI.py | 27 example = lldb.SBStructuredData() 45 dict_struct = lldb.SBStructuredData() 67 invalid_struct = lldb.SBStructuredData() 78 dict_struct = lldb.SBStructuredData() 93 string_struct = lldb.SBStructuredData() 118 int_struct = lldb.SBStructuredData() 142 floating_point_struct = lldb.SBStructuredData() 158 bool_struct = lldb.SBStructuredData() 174 array_struct = lldb.SBStructuredData()
|
/external/llvm-project/lldb/tools/intel-features/intel-pt/ |
D | Decoder.cpp | 94 lldb::SBStructuredData sbstructdata = sbtraceoptions.getTraceParams(sberror); in StartProcessorTrace() 100 lldb::SBStructuredData value = sbstructdata.GetValueForKey(trace_tech_key); in StartProcessorTrace() 278 lldb::SBStructuredData sbstructdata = traceoptions.getTraceParams(sberror); in ReadTraceDataAndImageInfo() 419 void Decoder::ParseCPUInfo(CPUInfo &pt_cpu, lldb::SBStructuredData &s, in ParseCPUInfo() 421 lldb::SBStructuredData custom_trace_params = s.GetValueForKey("intel-pt"); in ParseCPUInfo() 435 lldb::SBStructuredData struct_family = in ParseCPUInfo() 451 lldb::SBStructuredData struct_model = in ParseCPUInfo() 469 lldb::SBStructuredData struct_stepping = in ParseCPUInfo() 490 lldb::SBStructuredData struct_vendor = in ParseCPUInfo() 847 lldb::SBStructuredData sbstructdata = traceoptions.getTraceParams(sberror); in GetProcessorTraceInfo()
|
D | PTDecoder.cpp | 76 lldb::SBStructuredData PTTraceOptions::GetTraceParams(lldb::SBError &error) { in GetTraceParams() 80 : lldb::SBStructuredData()); in GetTraceParams()
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_command/ |
D | TestBreakpointCommandsFromPython.py | 101 extra_args = lldb.SBStructuredData() 117 empty_args = lldb.SBStructuredData() 163 extra_args = lldb.SBStructuredData()
|