/external/llvm-project/lldb/source/API/ |
D | SBSection.cpp | 23 SBSection::SBSection() : m_opaque_wp() { in SBSection() function in SBSection 24 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBSection); in SBSection() 27 SBSection::SBSection(const SBSection &rhs) : m_opaque_wp(rhs.m_opaque_wp) { in SBSection() function in SBSection 28 LLDB_RECORD_CONSTRUCTOR(SBSection, (const lldb::SBSection &), rhs); in SBSection() 31 SBSection::SBSection(const lldb::SectionSP §ion_sp) in SBSection() function in SBSection 39 const SBSection &SBSection::operator=(const SBSection &rhs) { in operator =() 40 LLDB_RECORD_METHOD(const lldb::SBSection &, in operator =() 41 SBSection, operator=,(const lldb::SBSection &), rhs); in operator =() 47 SBSection::~SBSection() = default; 49 bool SBSection::IsValid() const { in IsValid() [all …]
|
D | SBAddress.cpp | 37 SBAddress::SBAddress(lldb::SBSection section, lldb::addr_t offset) in SBAddress() 39 LLDB_RECORD_CONSTRUCTOR(SBAddress, (lldb::SBSection, lldb::addr_t), section, in SBAddress() 92 void SBAddress::SetAddress(lldb::SBSection section, lldb::addr_t offset) { in SetAddress() 94 (lldb::SBSection, lldb::addr_t), section, offset); in SetAddress() 159 lldb::SBSection SBAddress::GetSection() { in GetSection() 160 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBSection, SBAddress, GetSection); in GetSection() 162 lldb::SBSection sb_section; in GetSection() 286 LLDB_REGISTER_CONSTRUCTOR(SBAddress, (lldb::SBSection, lldb::addr_t)); in RegisterMethods() 296 (lldb::SBSection, lldb::addr_t)); in RegisterMethods() 303 LLDB_REGISTER_METHOD(lldb::SBSection, SBAddress, GetSection, ()); in RegisterMethods()
|
D | SBModule.cpp | 375 SBSection SBModule::GetSectionAtIndex(size_t idx) { in GetSectionAtIndex() 376 LLDB_RECORD_METHOD(lldb::SBSection, SBModule, GetSectionAtIndex, (size_t), in GetSectionAtIndex() 379 SBSection sb_section; in GetSectionAtIndex() 560 SBSection SBModule::FindSection(const char *sect_name) { in FindSection() 561 LLDB_RECORD_METHOD(lldb::SBSection, SBModule, FindSection, (const char *), in FindSection() 564 SBSection sb_section; in FindSection() 745 LLDB_REGISTER_METHOD(lldb::SBSection, SBModule, GetSectionAtIndex, (size_t)); in RegisterMethods() 757 LLDB_REGISTER_METHOD(lldb::SBSection, SBModule, FindSection, (const char *)); in RegisterMethods()
|
D | SBReproducer.cpp | 107 RegisterMethods<SBSection>(R); in SBRegistry()
|
D | CMakeLists.txt | 66 SBSection.cpp
|
D | SBTarget.cpp | 2136 SBError SBTarget::SetSectionLoadAddress(lldb::SBSection section, in SetSectionLoadAddress() 2139 (lldb::SBSection, lldb::addr_t), section, in SetSectionLoadAddress() 2175 SBError SBTarget::ClearSectionLoadAddress(lldb::SBSection section) { in ClearSectionLoadAddress() 2177 (lldb::SBSection), section); in ClearSectionLoadAddress() 2636 (lldb::SBSection, lldb::addr_t)); in RegisterMethods() 2638 (lldb::SBSection)); in RegisterMethods()
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBSection.h | 17 class LLDB_API SBSection { 19 SBSection(); 21 SBSection(const lldb::SBSection &rhs); 23 ~SBSection(); 25 const lldb::SBSection &operator=(const lldb::SBSection &rhs); 33 lldb::SBSection GetParent(); 35 lldb::SBSection FindSubSection(const char *sect_name); 39 lldb::SBSection GetSubSectionAtIndex(size_t idx); 79 bool operator==(const lldb::SBSection &rhs); 81 bool operator!=(const lldb::SBSection &rhs); [all …]
|
D | SBAddress.h | 23 SBAddress(lldb::SBSection section, lldb::addr_t offset); 46 void SetAddress(lldb::SBSection section, lldb::addr_t offset); 72 lldb::SBSection GetSection(); 97 friend class SBSection; variable
|
D | SBModule.h | 111 lldb::SBSection FindSection(const char *sect_name); 150 lldb::SBSection GetSectionAtIndex(size_t idx); 300 friend class SBSection; variable
|
D | SBTarget.h | 351 lldb::SBError SetSectionLoadAddress(lldb::SBSection section, 363 lldb::SBError ClearSectionLoadAddress(lldb::SBSection section); 847 friend class SBSection; variable
|
D | SBStream.h | 81 friend class SBSection; variable
|
D | SBDefines.h | 66 class LLDB_API SBSection; variable
|
D | SBData.h | 146 friend class SBSection; variable
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBSection.i | 37 ) SBSection; 39 class SBSection 43 SBSection (); 45 SBSection (const lldb::SBSection &rhs); 47 ~SBSection (); 57 lldb::SBSection 60 lldb::SBSection 66 lldb::SBSection 112 operator == (const lldb::SBSection &rhs); 115 operator != (const lldb::SBSection &rhs); [all …]
|
D | SBAddress.i | 52 SBAddress (lldb::SBSection section, 96 lldb::SBSection 103 SetAddress (lldb::SBSection section,
|
D | SBModule.i | 187 lldb::SBSection 238 lldb::SBSection
|
D | SBTarget.i | 433 SetSectionLoadAddress (lldb::SBSection section, 437 ClearSectionLoadAddress (lldb::SBSection section);
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_module.py | 24 for symbol in obj.symbol_in_section_iter(lldb.SBSection()):
|
D | TestDefaultConstructorForAPIObjects.py | 272 obj = lldb.SBSection()
|
/external/llvm-project/lldb/bindings/ |
D | headers.swig | 52 #include "lldb/API/SBSection.h"
|
D | interfaces.swig | 59 %include "./interface/SBSection.i"
|
/external/llvm-project/lldb/tools/lldb-vscode/ |
D | JSONUtils.cpp | 332 static uint64_t GetDebugInfoSizeInSection(lldb::SBSection section) { in GetDebugInfoSizeInSection()
|
/external/llvm-project/lldb/tools/intel-features/intel-pt/ |
D | Decoder.cpp | 379 lldb::SBSection section = module.GetSectionAtIndex(idx); in GetTargetModulesInfo()
|
/external/llvm-project/lldb/bindings/python/ |
D | python-extensions.swig | 128 %extend lldb::SBSection {
|