Lines Matching refs:SBSection

23 SBSection::SBSection() { LLDB_INSTRUMENT_VA(this); }  in SBSection()  function in SBSection
25 SBSection::SBSection(const SBSection &rhs) : m_opaque_wp(rhs.m_opaque_wp) { in SBSection() function in SBSection
29 SBSection::SBSection(const lldb::SectionSP &section_sp) { in SBSection() function in SBSection
36 const SBSection &SBSection::operator=(const SBSection &rhs) { in operator =()
43 SBSection::~SBSection() = default;
45 bool SBSection::IsValid() const { in IsValid()
49 SBSection::operator bool() const { in operator bool()
56 const char *SBSection::GetName() { in GetName()
65 lldb::SBSection SBSection::GetParent() { in GetParent()
68 lldb::SBSection sb_section; in GetParent()
78 lldb::SBSection SBSection::FindSubSection(const char *sect_name) { in FindSubSection()
81 lldb::SBSection sb_section; in FindSubSection()
93 size_t SBSection::GetNumSubSections() { in GetNumSubSections()
102 lldb::SBSection SBSection::GetSubSectionAtIndex(size_t idx) { in GetSubSectionAtIndex()
105 lldb::SBSection sb_section; in GetSubSectionAtIndex()
112 lldb::SectionSP SBSection::GetSP() const { return m_opaque_wp.lock(); } in GetSP()
114 void SBSection::SetSP(const lldb::SectionSP &section_sp) { in SetSP()
118 lldb::addr_t SBSection::GetFileAddress() { in GetFileAddress()
128 lldb::addr_t SBSection::GetLoadAddress(lldb::SBTarget &sb_target) { in GetLoadAddress()
140 lldb::addr_t SBSection::GetByteSize() { in GetByteSize()
149 uint64_t SBSection::GetFileOffset() { in GetFileOffset()
164 uint64_t SBSection::GetFileByteSize() { in GetFileByteSize()
173 SBData SBSection::GetSectionData() { in GetSectionData()
179 SBData SBSection::GetSectionData(uint64_t offset, uint64_t size) { in GetSectionData()
193 SectionType SBSection::GetSectionType() { in GetSectionType()
202 uint32_t SBSection::GetPermissions() const { in GetPermissions()
211 uint32_t SBSection::GetTargetByteSize() { in GetTargetByteSize()
220 uint32_t SBSection::GetAlignment() { in GetAlignment()
229 bool SBSection::operator==(const SBSection &rhs) { in operator ==()
239 bool SBSection::operator!=(const SBSection &rhs) { in operator !=()
247 bool SBSection::GetDescription(SBStream &description) { in GetDescription()