Home
last modified time | relevance | path

Searched refs:m_SectionTable (Results 1 – 3 of 3) sorted by relevance

/frameworks/compile/mclinker/include/mcld/
DModule.h106 const SectionTable& getSectionTable() const { return m_SectionTable; } in getSectionTable()
107 SectionTable& getSectionTable() { return m_SectionTable; } in getSectionTable()
109 iterator begin() { return m_SectionTable.begin(); } in begin()
110 const_iterator begin() const { return m_SectionTable.begin(); } in begin()
111 iterator end() { return m_SectionTable.end(); } in end()
112 const_iterator end() const { return m_SectionTable.end(); } in end()
113 LDSection* front() { return m_SectionTable.front(); } in front()
114 const LDSection* front() const { return m_SectionTable.front(); } in front()
115 LDSection* back() { return m_SectionTable.back(); } in back()
116 const LDSection* back() const { return m_SectionTable.back(); } in back()
[all …]
/frameworks/compile/mclinker/lib/LD/
DLDContext.cpp23 pSection.setIndex(m_SectionTable.size()); in appendSection()
24 m_SectionTable.push_back(&pSection); in appendSection()
29 if (pIdx >= m_SectionTable.size()) in getSection()
31 return m_SectionTable[pIdx]; in getSection()
35 if (pIdx >= m_SectionTable.size()) in getSection()
37 return m_SectionTable[pIdx]; in getSection()
60 size_t size = m_SectionTable.size(); in getSectionIdx()
62 if (m_SectionTable[result]->name() == pName) in getSectionIdx()
/frameworks/compile/mclinker/include/mcld/LD/
DLDContext.h46 const_sect_iterator sectBegin() const { return m_SectionTable.begin(); } in sectBegin()
47 sect_iterator sectBegin() { return m_SectionTable.begin(); } in sectBegin()
49 const_sect_iterator sectEnd() const { return m_SectionTable.end(); } in sectEnd()
50 sect_iterator sectEnd() { return m_SectionTable.end(); } in sectEnd()
60 size_t numOfSections() const { return m_SectionTable.size(); } in numOfSections()
85 SectionTable m_SectionTable;