Home
last modified time | relevance | path

Searched refs:pArea (Results 1 – 4 of 4) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
DHandleToArea.h59 Result(FileHandle* pHandle, MemoryArea* pArea) in Result()
60 : handle(pHandle), area(pArea) { } in Result()
69 ConstResult(const FileHandle* pHandle, const MemoryArea* pArea) in ConstResult()
70 : handle(pHandle), area(pArea) { } in ConstResult()
78 bool push_back(FileHandle* pHandle, MemoryArea* pArea);
80 bool erase(MemoryArea* pArea);
DMemoryAreaFactory.h65 void destruct(MemoryArea* pArea);
/frameworks/compile/mclinker/lib/Support/
DHandleToArea.cpp18 bool HandleToArea::push_back(FileHandle* pHandle, MemoryArea* pArea) in push_back() argument
20 if (NULL == pHandle || NULL == pArea) in push_back()
29 bucket.area = pArea; in push_back()
34 bool HandleToArea::erase(MemoryArea* pArea) in erase() argument
36 if (NULL == pArea || NULL == pArea->handler()) in erase()
39 return erase(pArea->handler()->path()); in erase()
DMemoryAreaFactory.cpp101 void MemoryAreaFactory::destruct(MemoryArea* pArea) in destruct() argument
103 m_HandleToArea.erase(pArea); in destruct()
104 pArea->clear(); in destruct()
105 pArea->handler()->close(); in destruct()
106 destroy(pArea); in destruct()
107 deallocate(pArea); in destruct()