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 : private Uncopyable 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
/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:MemoryArea
34 MemoryArea::MemoryArea(const char* pMemBuffer, size_t pSize) function in class:MemoryArea
44 llvm::StringRef MemoryArea::request(size_t pOffset, size_t pLength)
49 size_t MemoryArea::size() const

Completed in 5815 milliseconds