Lines Matching refs:readOnly
59 void SharedMemoryBlock::Map(size_t size, bool readOnly) in Map() argument
72 this->MemoryBlockBase::SetReadOnly(readOnly); in Map()
75 …const bit32 myPermission = readOnly ? MEMORY_PERMISSION_READ : (MEMORY_PERMISSION_READ | MEMORY_PE… in Map()
96 Result SharedMemoryBlock::TryInitialize(size_t size, bool readOnly, bool otherReadOnly, bool noMap) in TryInitialize() argument
99 …bit32 myPermission = readOnly ? MEMORY_PERMISSION_READ : MEMORY_PERMISSION_READ | MEMORY_PERMISSIO… in TryInitialize()
110 Map(size, readOnly); in TryInitialize()
115 void SharedMemoryBlock::Initialize(size_t size, bool readOnly, bool otherReadOnly, bool noMap) in Initialize() argument
117 NN_ERR_THROW_FATAL(TryInitialize(size, readOnly, otherReadOnly, noMap)); in Initialize()
120 void SharedMemoryBlock::AttachAndMap(Handle handle, size_t size, bool readOnly) in AttachAndMap() argument
126 Map(size, readOnly); in AttachAndMap()
162 void nnosSharedMemoryBlockAllocate(nnosSharedMemoryBlock* this_, size_t size, bool readOnly, bool o… in nnosSharedMemoryBlockAllocate() argument
164 new (this_) SharedMemoryBlock(size, readOnly, otherReadOnly, noMap); in nnosSharedMemoryBlockAllocate()