Searched refs:m_pSection (Results 1 – 10 of 10) sorted by relevance
/frameworks/compile/mclinker/include/mcld/LD/ |
D | DebugString.h | 28 : m_pSection(NULL) {} in DebugString() 49 { m_pSection = &pSection; } in setOutputSection() 52 const LDSection* getSection() const { return m_pSection; } in getSection() 53 LDSection* getSection() { return m_pSection; } in getSection() 57 LDSection* m_pSection;
|
D | SectionData.h | 54 const LDSection& getSection() const { return *m_pSection; } in getSection() 55 LDSection& getSection() { return *m_pSection; } in getSection() 84 LDSection* m_pSection; variable
|
D | RelocData.h | 63 const LDSection& getSection() const { return *m_pSection; } in getSection() 64 LDSection& getSection() { return *m_pSection; } in getSection() 97 LDSection* m_pSection; variable
|
D | EhFrame.h | 239 LDSection* m_pSection;
|
/frameworks/compile/mclinker/lib/Object/ |
D | SectionMap.cpp | 52 m_pSection = LDSection::Create(pName, LDFileFormat::TEXT, 0, 0); in Input() 53 SectionData* sd = SectionData::Create(*m_pSection); in Input() 54 m_pSection->setSectionData(sd); in Input() 64 m_pSection = LDSection::Create("", LDFileFormat::TEXT, 0, 0); in Input() 65 SectionData* sd = SectionData::Create(*m_pSection); in Input() 66 m_pSection->setSectionData(sd); in Input() 88 m_pSection = LDSection::Create(pName, LDFileFormat::TEXT, 0, 0); in Output() 89 SectionData* sd = SectionData::Create(*m_pSection); in Output() 90 m_pSection->setSectionData(sd); in Output() 100 m_pSection = LDSection::Create(m_Name, LDFileFormat::TEXT, 0, 0); in Output() [all …]
|
/frameworks/compile/mclinker/include/mcld/Object/ |
D | SectionMap.h | 44 const LDSection* getSection() const { return m_pSection; } in getSection() 45 LDSection* getSection() { return m_pSection; } in getSection() 58 LDSection* m_pSection; variable 91 const LDSection* getSection() const { return m_pSection; } in getSection() 92 LDSection* getSection() { return m_pSection; } in getSection() 94 void setSection(LDSection* pSection) { m_pSection = pSection; } in setSection() 132 LDSection* m_pSection; variable
|
/frameworks/compile/mclinker/lib/LD/ |
D | SectionData.cpp | 25 SectionData::SectionData() : m_pSection(NULL) { in SectionData() 28 SectionData::SectionData(LDSection& pSection) : m_pSection(&pSection) { in SectionData()
|
D | RelocData.cpp | 24 RelocData::RelocData() : m_pSection(NULL) { in RelocData() 27 RelocData::RelocData(LDSection& pSection) : m_pSection(&pSection) { in RelocData()
|
D | EhFrame.cpp | 92 EhFrame::EhFrame() : m_pSection(NULL), m_pSectionData(NULL) { in EhFrame() 96 : m_pSection(&pSection), m_pSectionData(NULL) { in EhFrame() 120 assert(m_pSection != NULL); in getSection() 121 return *m_pSection; in getSection() 125 assert(m_pSection != NULL); in getSection() 126 return *m_pSection; in getSection()
|
D | DebugString.cpp | 63 m_pSection->setSize(size); in computeOffsetSize()
|