Lines Matching refs:RelocData
17 typedef GCFactory<RelocData, MCLD_SECTIONS_PER_INPUT> RelocDataFactory;
24 RelocData::RelocData() : m_pSection(NULL) { in RelocData() function in mcld::RelocData
27 RelocData::RelocData(LDSection& pSection) : m_pSection(&pSection) { in RelocData() function in mcld::RelocData
30 RelocData* RelocData::Create(LDSection& pSection) { in Create()
31 RelocData* result = g_RelocDataFactory->allocate(); in Create()
32 new (result) RelocData(pSection); in Create()
36 void RelocData::Destroy(RelocData*& pSection) { in Destroy()
37 pSection->~RelocData(); in Destroy()
42 void RelocData::Clear() { in Clear()
46 RelocData& RelocData::append(Relocation& pRelocation) { in append()
51 Relocation& RelocData::remove(Relocation& pRelocation) { in remove()