Home | History | Annotate | Download | only in LD

Lines Matching defs:m_Data

151   const SectionData* getSectionData() const { return m_Data.sect_data; }
152 SectionData* getSectionData() { return m_Data.sect_data; }
154 void setSectionData(SectionData* pSD) { m_Data.sect_data = pSD; }
159 const RelocData* getRelocData() const { return m_Data.reloc_data; }
160 RelocData* getRelocData() { return m_Data.reloc_data; }
162 void setRelocData(RelocData* pRD) { m_Data.reloc_data = pRD; }
167 const EhFrame* getEhFrame() const { return m_Data.eh_frame; }
168 EhFrame* getEhFrame() { return m_Data.eh_frame; }
170 void setEhFrame(EhFrame* pEhFrame) { m_Data.eh_frame = pEhFrame; }
208 /// m_Data - the SectionData or RelocData of this section
209 SectOrRelocData m_Data;