/frameworks/compile/mclinker/lib/Support/ |
D | MemoryArea.cpp | 26 MemoryArea::MemoryArea(RegionFactory& pRegionFactory) in MemoryArea() function in MemoryArea 34 MemoryArea::~MemoryArea() in ~MemoryArea() 43 void MemoryArea::truncate(size_t pLength) in truncate() 57 void MemoryArea::map(const sys::fs::Path& pPath, int pFlags) in map() 81 void MemoryArea::map(const sys::fs::Path& pPath, int pFlags, int pMode) in map() 105 void MemoryArea::unmap() in unmap() 117 bool MemoryArea::isMapped() const in isMapped() 122 bool MemoryArea::isGood() const in isGood() 127 bool MemoryArea::isBad() const in isBad() 132 bool MemoryArea::isFailed() const in isFailed() [all …]
|
D | MemoryAreaFactory.cpp | 17 : UniqueGCFactoryBase<sys::fs::Path, MemoryArea, 0>(pNum) { in MemoryAreaFactory() 29 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath, int pFlags) in produce() 31 MemoryArea* result = find(pPath); in produce() 34 new (result) MemoryArea(*m_pRegionFactory); in produce() 41 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath, int pFlags, mode_t pMode) in produce() 43 MemoryArea* result = find(pPath); in produce() 46 new (result) MemoryArea(*m_pRegionFactory); in produce()
|
D | MemoryRegion.cpp | 15 MemoryRegion::MemoryRegion(MemoryArea::Space *pParentSpace, in MemoryRegion()
|
D | RegionFactory.cpp | 24 MemoryRegion* RegionFactory::produce(MemoryArea::Space* pSpace, in produce()
|
D | Android.mk | 8 MemoryArea.cpp \
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | MemoryRegion.h | 42 friend class MemoryArea; variable 51 MemoryRegion(MemoryArea::Space* pParentSpace, 58 MemoryArea::Space* parent() in parent() 61 const MemoryArea::Space* parent() const in parent() 89 MemoryArea::Space* m_pParentSpace;
|
D | MemoryAreaFactory.h | 45 class MemoryAreaFactory : public UniqueGCFactoryBase<sys::fs::Path, MemoryArea, 0> 54 MemoryArea* produce(const sys::fs::Path& pPath, int pFlags); 55 MemoryArea* produce(const sys::fs::Path& pPath, int pFlags, mode_t pMode);
|
D | MemoryArea.h | 53 class MemoryArea : private Uncopyable 101 Space(MemoryArea* pParent, size_t pOffset, size_t pLength) in Space() 117 MemoryArea* m_pParent; 133 MemoryArea(RegionFactory& pRegionFactory); 136 ~MemoryArea();
|
D | RegionFactory.h | 22 class MemoryArea; variable 38 MemoryRegion* produce(MemoryArea::Space* pSpace,
|
/frameworks/compile/mclinker/unittests/ |
D | MCRegionFragmentTest.cpp | 49 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); in TEST_F() 64 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); in TEST_F()
|
D | MemoryAreaTest.cpp | 54 MemoryArea* area = AreaFactory->produce(path, O_RDONLY); in TEST_F() 66 MemoryArea* area = AreaFactory->produce(path, O_RDWR); in TEST_F() 90 MemoryArea* area = AreaFactory->produce(path, O_RDWR) ; in TEST_F() 104 MemoryArea* area = AreaFactory->produce(path, O_RDWR) ; in TEST_F() 127 MemoryArea* area = AreaFactory->produce(path, O_RDWR) ; in TEST_F()
|
D | UniqueGCFactoryBaseTest.cpp | 71 MemoryArea* area1 = memFactory->produce("/home/luba", O_RDONLY); in TEST_F() 72 MemoryArea* area2 = memFactory->produce("/home/jush", O_RDONLY); in TEST_F() 74 MemoryArea* area3 = memFactory->produce("/home/jush/../luba", O_RDONLY); in TEST_F()
|
D | MemoryAreaTest.h | 16 class MemoryArea; variable 44 mcld::MemoryArea* m_pTestee;
|
D | MCFragmentRefTest.cpp | 48 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite);
|
/frameworks/compile/mclinker/include/mcld/MC/ |
D | MCLDFile.h | 33 class MemoryArea; variable 75 void setMemArea(MemoryArea* pMemArea) in setMemArea() 106 MemoryArea* memArea() in memArea() 109 const MemoryArea* memArea() const in memArea() 117 MemoryArea* m_pMemArea;
|
/frameworks/compile/mclinker/ |
D | ChangeLog | 11 * Support/MemoryArea, Support/MemoryRegion: 82 * Suppot/MemoryRegion, Support/MemoryArea: 83 1. remove pIsWrite parameter in MemoryArea::request(). MemoryArea knows 85 2. MemoryArea allows to request a zero size MemoryRegion.
|
/frameworks/compile/mclinker/lib/LD/ |
D | ELFObjectReader.cpp | 217 MemoryArea* mem = pInput.memArea(); in readRelocations()
|
/frameworks/compile/mclinker/lib/MC/ |
D | MCLDDriver.cpp | 50 MemoryArea *input_memory = in normalize()
|