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

  /frameworks/base/libs/utils/
FileMap.cpp 21 #define LOG_TAG "filemap"
23 #include <utils/FileMap.h>
40 /*static*/ long FileMap::mPageSize = -1;
46 FileMap::FileMap(void)
55 FileMap::~FileMap(void)
59 //printf("+++ removing FileMap %p %u\n", mDataPtr, mDataLength);
89 bool FileMap::create(const char* origFileName, int fd, off_t offset, size_t length, bool readOnly)
199 int FileMap::advise(MapAdvice advice
    [all...]
  /frameworks/base/include/utils/
FileMap.h 40 * TODO: we should be able to create a new FileMap that is a subset of
41 * an existing FileMap and shares the underlying mapped pages. Requires
43 * of a FileMap hierarchy.
45 class FileMap {
47 FileMap(void);
83 FileMap* acquire(void) { mRefCount++; return this; }
110 ~FileMap(void);
114 FileMap(const FileMap& src);
115 const FileMap& operator=(const FileMap& src)
    [all...]

Completed in 57 milliseconds