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

/frameworks/native/include/utils/
H A DFileMap.h42 * TODO: we should be able to create a new FileMap that is a subset of
43 * an existing FileMap and shares the underlying mapped pages. Requires
45 * of a FileMap hierarchy.
47 class FileMap { class in namespace:android
49 FileMap(void);
85 FileMap* acquire(void) { mRefCount++; return this; }
112 ~FileMap(void);
116 FileMap(const FileMap& src);
117 const FileMap
[all...]
/frameworks/native/libs/utils/
H A DFileMap.cpp23 #include <utils/FileMap.h>
40 /*static*/ long FileMap::mPageSize = -1;
46 FileMap::FileMap(void) function in class:FileMap
55 FileMap::~FileMap(void)
59 //printf("+++ removing FileMap %p %u\n", mDataPtr, mDataLength);
91 bool FileMap::create(const char* origFileName, int fd, off64_t offset, size_t length,
202 int FileMap::advise(MapAdvice advice)

Completed in 115 milliseconds