HomeSort by relevance Sort by last modified time
    Searched defs:MemoryArea (Results 1 - 2 of 2) sorted by null

  /frameworks/compile/mclinker/include/mcld/Support/
MemoryArea.h 1 //===- MemoryArea.h -------------------------------------------------------===//
19 /** \class MemoryArea
20 * \brief MemoryArea is used to manage input read-only memory space.
22 class MemoryArea {
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/
MemoryArea.cpp 1 //===- MemoryArea.cpp -----------------------------------------------------===//
9 #include "mcld/Support/MemoryArea.h"
20 // MemoryArea
22 MemoryArea::MemoryArea(llvm::StringRef pFilename) {
33 MemoryArea::MemoryArea(const char* pMemBuffer, size_t pSize) {
41 llvm::StringRef MemoryArea::request(size_t pOffset, size_t pLength) {
45 size_t MemoryArea::size() const {

Completed in 6576 milliseconds