Searched refs:mBasePtr (Results 1 – 2 of 2) sorted by relevance
/system/core/libutils/ |
D | FileMap.cpp | 51 : mFileName(NULL), mBasePtr(NULL), mBaseLength(0), in FileMap() 58 : mFileName(other.mFileName), mBasePtr(other.mBasePtr), mBaseLength(other.mBaseLength), in FileMap() 65 other.mBasePtr = NULL; in FileMap() 76 mBasePtr = other.mBasePtr; in operator =() 82 other.mBasePtr = NULL; in operator =() 100 if (mBasePtr && UnmapViewOfFile(mBasePtr) == 0) { in ~FileMap() 101 ALOGD("UnmapViewOfFile(%p) failed, error = %" PRId32 "\n", mBasePtr, in ~FileMap() 108 if (mBasePtr && munmap(mBasePtr, mBaseLength) != 0) { in ~FileMap() 109 ALOGD("munmap(%p, %zu) failed\n", mBasePtr, mBaseLength); in ~FileMap() 150 mBasePtr = MapViewOfFile( mFileMapping, in create() [all …]
|
/system/core/include/utils/ |
D | FileMap.h | 114 void* mBasePtr; // base of mmap area; page aligned variable
|