Home
last modified time | relevance | path

Searched refs:otherReadOnly (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-0.13.2/include/nn/os/
Dos_SharedMemory.h40 …ze_t size, bool readOnly = false, bool otherReadOnly = false, bool noMap = false) { Initialize(siz…
42 …void Initialize(size_t size, bool readOnly = false, bool otherReadOnly = false, bool noMap = false…
44 …Result TryInitialize(size_t size, bool readOnly = false, bool otherReadOnly = false, bool noMap = …
74 …Allocate(nnosSharedMemoryBlock* this_, size_t size, bool readOnly, bool otherReadOnly, bool noMap);
/CTR-SDK-0.13.2/sources/libraries/os/
Dos_SharedMemory.cpp95 Result SharedMemoryBlock::TryInitialize(size_t size, bool readOnly, bool otherReadOnly, bool noMap) in TryInitialize() argument
99 …bit32 otherPermission = otherReadOnly ? MEMORY_PERMISSION_READ : MEMORY_PERMISSION_READ | MEMORY_P… in TryInitialize()
114 void SharedMemoryBlock::Initialize(size_t size, bool readOnly, bool otherReadOnly, bool noMap) in Initialize() argument
116 NN_UTIL_PANIC_IF_FAILED(TryInitialize(size, readOnly, otherReadOnly, noMap)); in Initialize()
161 …kAllocate(nnosSharedMemoryBlock* this_, size_t size, bool readOnly, bool otherReadOnly, bool noMap) in nnosSharedMemoryBlockAllocate() argument
163 new (this_) SharedMemoryBlock(size, readOnly, otherReadOnly, noMap); in nnosSharedMemoryBlockAllocate()