Searched refs:pRelocation (Results 1 - 17 of 17) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DRelocData.cpp50 RelocData& RelocData::append(Relocation& pRelocation) argument
52 m_Relocations.push_back(&pRelocation);
56 Relocation& RelocData::remove(Relocation& pRelocation) argument
58 iterator iter(pRelocation);
H A DRelocationFactory.cpp86 void RelocationFactory::destroy(Relocation* pRelocation) argument
/frameworks/compile/mclinker/include/mcld/LD/
H A DRelocationFactory.h51 void destroy(Relocation* pRelocation);
H A DRelocData.h74 RelocData& append(Relocation& pRelocation);
75 Relocation& remove(Relocation& pRelocation);
H A DRelocator.h52 virtual Result applyRelocation(Relocation& pRelocation) = 0;
/frameworks/compile/mclinker/lib/Fragment/
H A DRelocation.cpp55 void Relocation::Destroy(Relocation*& pRelocation) argument
57 g_RelocationFactory->destroy(pRelocation);
58 pRelocation = NULL;
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.h71 virtual Result applyRelocation(Relocation& pRelocation) = 0;
134 Result applyRelocation(Relocation& pRelocation);
193 Result applyRelocation(Relocation& pRelocation);
H A DX86Relocator.cpp304 X86_32Relocator::applyRelocation(Relocation& pRelocation) argument
306 Relocation::Type type = pRelocation.type();
313 return X86_32ApplyFunctions[type].func(pRelocation, *this);
1295 X86_64Relocator::applyRelocation(Relocation& pRelocation) argument
1297 Relocation::Type type = pRelocation.type();
1304 return X86_64ApplyFunctions[type].func(pRelocation, *this);
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h65 static void Destroy(Relocation*& pRelocation);
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.h84 Result applyRelocation(Relocation& pRelocation);
H A DAArch64Relocator.cpp73 Relocator::Result AArch64Relocator::applyRelocation(Relocation& pRelocation) argument
75 Relocation::Type type = pRelocation.type();
81 return ApplyFunctions[type].func(pRelocation, *this);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.h68 Result applyRelocation(Relocation& pRelocation);
H A DARMRelocator.cpp352 ARMRelocator::applyRelocation(Relocation& pRelocation) argument
354 Relocation::Type type = pRelocation.type();
359 return ApplyFunctions[type].func(pRelocation, *this);
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.h74 Result applyRelocation(Relocation& pRelocation);
H A DHexagonRelocator.cpp174 Relocator::Result HexagonRelocator::applyRelocation(Relocation &pRelocation) { argument
175 Relocation::Type type = pRelocation.type();
182 return ApplyFunctions[type].func(pRelocation, *this);
/frameworks/compile/mclinker/include/mcld/
H A DIRBuilder.h325 static void AppendRelocation(Relocation& pRelocation, RelocData& pRD);
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp374 void IRBuilder::AppendRelocation(Relocation& pRelocation, RelocData& pRD) argument
376 pRD.append(pRelocation);

Completed in 617 milliseconds