Home | History | Annotate | Download | only in binder

Lines Matching defs:mBase

114     mutable void*       mBase;
251 mHeapId(-1), mBase(MAP_FAILED), mSize(0), mFlags(0), mOffset(0), mRealHeap(false)
261 if (mBase != MAP_FAILED) {
270 munmap(mBase, mSize);
287 if (heap->mBase != MAP_FAILED) {
290 mBase = heap->mBase;
337 mBase = mmap(0, size, access, MAP_SHARED, fd, offset);
338 if (mBase == MAP_FAILED) {
360 return mBase;
497 h->mHeapId.load(memory_order_relaxed), h->mBase, h->mSize);