HomeSort by relevance Sort by last modified time
    Searched full:psection (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /frameworks/compile/mclinker/lib/LD/
RelocData.cpp 27 RelocData::RelocData(LDSection &pSection)
28 : m_pSection(&pSection) {
31 RelocData* RelocData::Create(LDSection& pSection)
34 new (result) RelocData(pSection);
38 void RelocData::Destroy(RelocData*& pSection)
40 pSection->~RelocData();
41 g_RelocDataFactory->deallocate(pSection);
42 pSection = NULL;
SectionData.cpp 29 SectionData::SectionData(LDSection &pSection)
30 : m_pSection(&pSection) {
33 SectionData* SectionData::Create(LDSection& pSection)
36 new (result) SectionData(pSection);
40 void SectionData::Destroy(SectionData*& pSection)
42 pSection->~SectionData();
43 g_SectDataFactory->deallocate(pSection);
44 pSection = NULL;
ELFSegment.cpp 76 LDSection* pSection)
78 return m_SectionList.insert(pPos, pSection);
81 void ELFSegment::append(LDSection* pSection)
83 assert(NULL != pSection);
84 if (pSection->align() > m_MaxSectionAlign)
85 m_MaxSectionAlign = pSection->align();
86 m_SectionList.push_back(pSection);
ELFObjectWriter.cpp 391 ELFObjectWriter::emitSectionData(const LDSection& pSection,
395 switch (pSection.kind()) {
397 assert(pSection.hasRelocData());
400 assert(pSection.hasEhFrame());
401 sd = pSection.getEhFrame()->getSectionData();
404 assert(pSection.hasSectionData());
405 sd = pSection.getSectionData();
457 const LDSection& pSection,
460 const RelocData* sect_data = pSection.getRelocData();
463 if (pSection.type() == SHT_REL)
    [all...]
ELFSegmentFactory.cpp 49 ELFSegmentFactory::find(uint32_t pType, const LDSection* pSection)
56 if (*sect == pSection)
65 ELFSegmentFactory::find(uint32_t pType, const LDSection* pSection) const
72 if (*sect == pSection)
LDSection.cpp 80 void LDSection::Destroy(LDSection*& pSection)
82 g_SectFactory->destroy(pSection);
83 g_SectFactory->deallocate(pSection);
84 pSection = NULL;
LDContext.cpp 19 LDContext& LDContext::appendSection(LDSection& pSection)
21 if (LDFileFormat::Relocation == pSection.kind())
22 m_RelocSections.push_back(&pSection);
23 pSection.setIndex(m_SectionTable.size());
24 m_SectionTable.push_back(&pSection);
  /external/pdfium/core/src/fpdfdoc/
doc_vt.cpp 320 CTypeset::CTypeset(CSection * pSection) : m_pSection(pSection), m_pVT(pSection->m_pVT), m_rcRet(0.0f, 0.0f, 0.0f, 0.0f)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cmnquery.h 76 STDMETHOD(WriteString)(THIS_ LPCWSTR pSection,LPCWSTR pValueName,LPCWSTR pValue) PURE;
77 STDMETHOD(ReadString)(THIS_ LPCWSTR pSection,LPCWSTR pValueName,LPWSTR pBuffer,INT cchBuffer) PURE;
78 STDMETHOD(WriteInt)(THIS_ LPCWSTR pSection,LPCWSTR pValueName,INT value) PURE;
79 STDMETHOD(ReadInt)(THIS_ LPCWSTR pSection,LPCWSTR pValueName,LPINT pValue) PURE;
80 STDMETHOD(WriteStruct)(THIS_ LPCWSTR pSection,LPCWSTR pValueName,LPVOID pStruct,DWORD cbStruct) PURE;
81 STDMETHOD(ReadStruct)(THIS_ LPCWSTR pSection,LPCWSTR pValueName,LPVOID pStruct,DWORD cbStruct) PURE;
mpeg2structs.h 203 } SECTION, *PSECTION;
207 PSECTION pSection;
  /frameworks/compile/mclinker/include/mcld/LD/
GarbageCollection.h 45 /// pSection, create one if the list has not existed
46 SectionListTy& getReachedList(const LDSection& pSection);
49 /// pSection, return NULL if the list not exists
50 SectionListTy* findReachedList(const LDSection& pSection);
ELFObjectWriter.h 77 void emitSectionData(const LDSection& pSection, MemoryRegion& pRegion) const;
83 const LDSection& pSection,
100 uint64_t getSectEntrySize(const LDSection& pSection) const;
103 uint64_t getSectLink(const LDSection& pSection,
107 uint64_t getSectInfo(const LDSection& pSection) const;
SectionData.h 33 explicit SectionData(LDSection &pSection);
51 static SectionData* Create(LDSection& pSection);
53 static void Destroy(SectionData*& pSection);
Relocator.h 60 /// @param pSection - the section of relocation applying target
65 LDSection& pSection,
71 /// @param pSection - the section of relocation applying target
74 LDSection& pSection,
102 /// @param pSection - the section of relocation applying target
105 const LDSection& pSection);
RelocData.h 39 explicit RelocData(LDSection &pSection);
58 static RelocData* Create(LDSection& pSection);
60 static void Destroy(RelocData*& pSection);
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 292 /// CreateSectionData - To create a section data for given pSection.
293 SectionData* IRBuilder::CreateSectionData(LDSection& pSection)
295 assert(!pSection.hasSectionData() && "pSection already has section data.");
297 SectionData* sect_data = SectionData::Create(pSection);
298 pSection.setSectionData(sect_data);
302 /// CreateRelocData - To create a relocation data for given pSection.
303 RelocData* IRBuilder::CreateRelocData(LDSection &pSection)
305 assert(!pSection.hasRelocData() && "pSection already has relocation data.")
    [all...]
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 242 /// CreateSectionData - To create a section data for given pSection.
243 /// @param [in, out] pSection The given LDSection. It can be in either an
245 /// pSection.getSectionData() is set to a valid section data.
246 /// @return The created section data. If the pSection already has section
247 /// data, or if the pSection's type should not have a section data
249 static SectionData* CreateSectionData(LDSection& pSection);
251 /// CreateRelocData - To create a relocation data for given pSection.
252 /// @param [in, out] pSection The given LDSection. It can be in either an
254 /// pSection.getRelocData() is set to a valid relocation data.
255 /// @return The created relocation data. If the pSection already ha
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86Relocator.h 87 LDSection& pSection,
106 LDSection& pSection) = 0;
111 LDSection& pSection) = 0;
162 LDSection& pSection);
167 LDSection& pSection);
171 void convertTLSIEtoLE(Relocation& pReloc, LDSection& pSection);
222 LDSection& pSection);
227 LDSection& pSection);
X86GOT.cpp 21 X86_32GOT::X86_32GOT(LDSection& pSection)
22 : GOT(pSection)
38 X86_64GOT::X86_64GOT(LDSection& pSection)
39 : GOT(pSection)
X86GOT.h 37 X86_32GOT(LDSection& pSection);
62 X86_64GOT(LDSection& pSection);
X86GOTPLT.h 29 X86_32GOTPLT(LDSection &pSection);
47 X86_64GOTPLT(LDSection &pSection);
  /frameworks/compile/mclinker/lib/Target/
GOT.cpp 24 GOT::GOT(LDSection& pSection)
25 : m_Section(pSection) {
26 m_SectionData = IRBuilder::CreateSectionData(pSection);
PLT.cpp 20 PLT::PLT(LDSection& pSection)
21 :m_Section(pSection)
23 m_pSectionData = IRBuilder::CreateSectionData(pSection);
  /frameworks/compile/mclinker/lib/Fragment/
FragmentRef.cpp 79 FragmentRef* FragmentRef::Create(LDSection& pSection, uint64_t pOffset)
82 switch (pSection.kind()) {
87 if (pSection.hasEhFrame())
88 data = pSection.getEhFrame()->getSectionData();
91 data = pSection.getSectionData();
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.h 98 LDSection& pSection,
107 void scanLocalReloc(Relocation& pReloc, const LDSection& pSection);
111 const LDSection& pSection);

Completed in 430 milliseconds

1 2 3 4