Home
last modified time | relevance | path

Searched refs:MemoryArea (Results 1 – 18 of 18) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
DMemoryArea.cpp26 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 …]
DMemoryAreaFactory.cpp17 : 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()
DMemoryRegion.cpp15 MemoryRegion::MemoryRegion(MemoryArea::Space *pParentSpace, in MemoryRegion()
DRegionFactory.cpp24 MemoryRegion* RegionFactory::produce(MemoryArea::Space* pSpace, in produce()
DAndroid.mk8 MemoryArea.cpp \
/frameworks/compile/mclinker/include/mcld/Support/
DMemoryRegion.h42 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;
DMemoryAreaFactory.h45 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);
DMemoryArea.h53 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();
DRegionFactory.h22 class MemoryArea; variable
38 MemoryRegion* produce(MemoryArea::Space* pSpace,
/frameworks/compile/mclinker/unittests/
DMCRegionFragmentTest.cpp49 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); in TEST_F()
64 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); in TEST_F()
DMemoryAreaTest.cpp54 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()
DUniqueGCFactoryBaseTest.cpp71 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()
DMemoryAreaTest.h16 class MemoryArea; variable
44 mcld::MemoryArea* m_pTestee;
DMCFragmentRefTest.cpp48 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite);
/frameworks/compile/mclinker/include/mcld/MC/
DMCLDFile.h33 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/
DChangeLog11 * 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/
DELFObjectReader.cpp217 MemoryArea* mem = pInput.memArea(); in readRelocations()
/frameworks/compile/mclinker/lib/MC/
DMCLDDriver.cpp50 MemoryArea *input_memory = in normalize()