Home
last modified time | relevance | path

Searched refs:SBSection (Results 1 – 24 of 24) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBSection.cpp23 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 &section_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 …]
DSBAddress.cpp37 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()
DSBModule.cpp375 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()
DSBReproducer.cpp107 RegisterMethods<SBSection>(R); in SBRegistry()
DCMakeLists.txt66 SBSection.cpp
DSBTarget.cpp2136 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/
DSBSection.h17 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 …]
DSBAddress.h23 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
DSBModule.h111 lldb::SBSection FindSection(const char *sect_name);
150 lldb::SBSection GetSectionAtIndex(size_t idx);
300 friend class SBSection; variable
DSBTarget.h351 lldb::SBError SetSectionLoadAddress(lldb::SBSection section,
363 lldb::SBError ClearSectionLoadAddress(lldb::SBSection section);
847 friend class SBSection; variable
DSBStream.h81 friend class SBSection; variable
DSBDefines.h66 class LLDB_API SBSection; variable
DSBData.h146 friend class SBSection; variable
/external/llvm-project/lldb/bindings/interface/
DSBSection.i37 ) 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 …]
DSBAddress.i52 SBAddress (lldb::SBSection section,
96 lldb::SBSection
103 SetAddress (lldb::SBSection section,
DSBModule.i187 lldb::SBSection
238 lldb::SBSection
DSBTarget.i433 SetSectionLoadAddress (lldb::SBSection section,
437 ClearSectionLoadAddress (lldb::SBSection section);
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_module.py24 for symbol in obj.symbol_in_section_iter(lldb.SBSection()):
DTestDefaultConstructorForAPIObjects.py272 obj = lldb.SBSection()
/external/llvm-project/lldb/bindings/
Dheaders.swig52 #include "lldb/API/SBSection.h"
Dinterfaces.swig59 %include "./interface/SBSection.i"
/external/llvm-project/lldb/tools/lldb-vscode/
DJSONUtils.cpp332 static uint64_t GetDebugInfoSizeInSection(lldb::SBSection section) { in GetDebugInfoSizeInSection()
/external/llvm-project/lldb/tools/intel-features/intel-pt/
DDecoder.cpp379 lldb::SBSection section = module.GetSectionAtIndex(idx); in GetTargetModulesInfo()
/external/llvm-project/lldb/bindings/python/
Dpython-extensions.swig128 %extend lldb::SBSection {