Searched defs:MemoryArea (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
H A DMemoryArea.h1 //===- MemoryArea.h -------------------------------------------------------===//
19 /** \class MemoryArea
20 * \brief MemoryArea is used to manage input read-only memory space.
22 class MemoryArea { class in namespace:mcld
30 explicit MemoryArea(llvm::StringRef pFilename);
32 explicit MemoryArea(const char* pMemBuffer, size_t pSize);
36 // if MemoryArea does not find such space, then it creates a new space and
46 DISALLOW_COPY_AND_ASSIGN(MemoryArea);
/frameworks/compile/mclinker/lib/Support/
H A DMemoryArea.cpp1 //===- MemoryArea.cpp -----------------------------------------------------===//
9 #include "mcld/Support/MemoryArea.h"
20 // MemoryArea
22 MemoryArea::MemoryArea(llvm::StringRef pFilename) { function in class:mcld::MemoryArea
33 MemoryArea::MemoryArea(const char* pMemBuffer, size_t pSize) { function in class:mcld::MemoryArea
41 llvm::StringRef MemoryArea::request(size_t pOffset, size_t pLength) {
45 size_t MemoryArea::size() const {

Completed in 314 milliseconds