Searched defs:pArea (Results 1 - 5 of 5) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
H A DHandleToArea.cpp17 bool HandleToArea::push_back(FileHandle* pHandle, MemoryArea* pArea) argument
19 if (NULL == pHandle || NULL == pArea)
28 bucket.area = pArea;
33 bool HandleToArea::erase(MemoryArea* pArea) argument
35 if (NULL == pArea || NULL == pArea->handler())
38 return erase(pArea->handler()->path());
H A DMemoryAreaFactory.cpp87 void MemoryAreaFactory::destruct(MemoryArea* pArea) argument
89 m_HandleToArea.erase(pArea);
90 pArea->clear();
91 pArea->handler()->close();
92 destroy(pArea);
93 deallocate(pArea);
/frameworks/compile/mclinker/include/mcld/Support/
H A DHandleToArea.h60 Result(FileHandle* pHandle, MemoryArea* pArea) argument
61 : handle(pHandle), area(pArea) { }
70 ConstResult(const FileHandle* pHandle, const MemoryArea* pArea) argument
71 : handle(pHandle), area(pArea) { }
79 bool push_back(FileHandle* pHandle, MemoryArea* pArea);
81 bool erase(MemoryArea* pArea);
/frameworks/compile/mclinker/lib/LD/
H A DEhFrame.cpp36 MemoryArea& pArea)
38 MemoryRegion* region = pArea.request(
55 pArea.release(region);
61 pArea.release(region);
104 MemoryRegion* ent_region = pArea.request(
113 pArea.release(ent_region);
122 pArea.release(ent_region);
131 pArea.release(region);
132 deleteFragments(frag_list, pArea);
143 pArea
31 readEhFrame(Layout& pLayout, const TargetLDBackend& pBackend, SectionData& pSD, const Input& pInput, LDSection& pSection, MemoryArea& pArea) argument
348 deleteFragments(FragListType& pList, MemoryArea& pArea) argument
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DMCLinker.cpp678 /// @param pArea - the memory area which pSection is within.
681 MemoryArea& pArea)
694 pSection, pArea);
703 MemoryRegion* region = pArea.request(pInput.fileOffset() + pSection.offset(),
679 addEhFrame(const Input& pInput, LDSection& pSection, MemoryArea& pArea) argument

Completed in 370 milliseconds