HomeSort by relevance Sort by last modified time
    Searched defs:sect_data (Results 1 - 5 of 5) sorted by null

  /frameworks/compile/mclinker/include/mcld/LD/
LDSection.h 154 const SectionData* getSectionData() const { return m_Data.sect_data; }
155 SectionData* getSectionData() { return m_Data.sect_data; }
157 void setSectionData(SectionData* pSD) { m_Data.sect_data = pSD; }
191 SectionData* sect_data; member in union:mcld::LDSection::SectOrRelocData
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 316 SectionData* sect_data = SectionData::Create(pSection); local
317 pSection.setSectionData(sect_data);
318 return sect_data;
347 SectionData* sect_data = SectionData::Create(pSection); local
348 pSection.setSectionData(sect_data);
353 ObjectBuilder::AppendFragment(*frag, *sect_data);
354 return sect_data;
  /frameworks/compile/mclinker/lib/Fragment/
FragmentGraph.cpp 302 SectionData* sect_data = NULL; local
308 sect_data = section->getSectionData();
309 if (NULL == sect_data)
316 SectionData::iterator frag_it = sect_data->begin();
317 SectionData::iterator frag_end = sect_data->end();
  /frameworks/compile/mclinker/lib/LD/
ELFObjectWriter.cpp 399 const RelocData* sect_data = pSection.getRelocData(); local
400 assert(NULL != sect_data && "SectionData is NULL in emitRelocation!");
404 emitRel<32>(pConfig, *sect_data, pRegion);
406 emitRel<64>(pConfig, *sect_data, pRegion);
413 emitRela<32>(pConfig, *sect_data, pRegion);
415 emitRela<64>(pConfig, *sect_data, pRegion);
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.cpp 760 const SectionData* sect_data = pSection.getSectionData(); local
761 SectionData::const_iterator frag_iter, frag_end = sect_data->end();
763 for (frag_iter = sect_data->begin(); frag_iter != frag_end; ++frag_iter) {
    [all...]

Completed in 80 milliseconds