Lines Matching refs:mFlags
65 : mFD(-1), mSize(0), mBase(MAP_FAILED), mFlags(flags), in MemoryHeapBase()
71 if (mFlags & FORCE_MEMFD) { in MemoryHeapBase()
76 const int SEAL_FLAGS = ((mFlags & READ_ONLY) ? F_SEAL_FUTURE_WRITE : 0) | F_SEAL_GROW | in MemoryHeapBase()
77 F_SEAL_SHRINK | ((mFlags & MEMFD_ALLOW_SEALING_FLAG) ? 0 : F_SEAL_SEAL); in MemoryHeapBase()
88 mFlags &= ~(FORCE_MEMFD | MEMFD_ALLOW_SEALING_FLAG); in MemoryHeapBase()
94 if (mFlags & READ_ONLY) { in MemoryHeapBase()
100 : mFD(-1), mSize(0), mBase(MAP_FAILED), mFlags(flags), in MemoryHeapBase()
122 : mFD(-1), mSize(0), mBase(MAP_FAILED), mFlags(flags), in MemoryHeapBase()
141 mFlags = flags; in init()
163 if ((mFlags & DONT_MAP_LOCALLY) == 0) { in mapfd()
165 if (writeableByCaller || (mFlags & READ_ONLY) == 0) { in mapfd()
221 return mFlags; in getFlags()