Searched refs:mBasePtr (Results 1 – 2 of 2) sorted by relevance
/system/core/libutils/ |
D | FileMap.cpp | 52 mBasePtr(NULL), in FileMap() 66 : mFileName(other.mFileName), mBasePtr(other.mBasePtr), mBaseLength(other.mBaseLength), in FileMap() 73 other.mBasePtr = NULL; in FileMap() 84 mBasePtr = other.mBasePtr; in operator =() 90 other.mBasePtr = NULL; in operator =() 108 if (mBasePtr && UnmapViewOfFile(mBasePtr) == 0) { in ~FileMap() 109 ALOGD("UnmapViewOfFile(%p) failed, error = %lu\n", mBasePtr, in ~FileMap() 116 if (mBasePtr && munmap(mBasePtr, mBaseLength) != 0) { in ~FileMap() 117 ALOGD("munmap(%p, %zu) failed\n", mBasePtr, mBaseLength); in ~FileMap() 158 mBasePtr = MapViewOfFile( mFileMapping, in create() [all …]
|
/system/core/libutils/include/utils/ |
D | FileMap.h | 114 void* mBasePtr; // base of mmap area; page aligned variable
|