Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/include/mcld/
DModule.h117 const SectionTable& getSectionTable() const { return m_SectionTable; } in getSectionTable()
118 SectionTable& getSectionTable() { return m_SectionTable; } in getSectionTable()
120 iterator begin() { return m_SectionTable.begin(); } in begin()
121 const_iterator begin() const { return m_SectionTable.begin(); } in begin()
122 iterator end () { return m_SectionTable.end(); } in end()
123 const_iterator end () const { return m_SectionTable.end(); } in end()
124 LDSection* front() { return m_SectionTable.front(); } in front()
125 const LDSection* front() const { return m_SectionTable.front(); } in front()
126 LDSection* back () { return m_SectionTable.back(); } in back()
127 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()
30 if (pIdx >= m_SectionTable.size()) in getSection()
32 return m_SectionTable[pIdx]; in getSection()
37 if (pIdx >= m_SectionTable.size()) in getSection()
39 return m_SectionTable[pIdx]; in getSection()
65 size_t size = m_SectionTable.size(); in getSectionIdx()
67 if (m_SectionTable[result]->name() == pName) in getSectionIdx()
/frameworks/compile/mclinker/include/mcld/LD/
DLDContext.h48 const_sect_iterator sectBegin() const { return m_SectionTable.begin(); } in sectBegin()
49 sect_iterator sectBegin() { return m_SectionTable.begin(); } in sectBegin()
51 const_sect_iterator sectEnd() const { return m_SectionTable.end(); } in sectEnd()
52 sect_iterator sectEnd() { return m_SectionTable.end(); } in sectEnd()
63 { return m_SectionTable.size(); } in numOfSections()
83 SectionTable m_SectionTable;