| /CTR-SDK-4.2.5/include/nn/os/ |
| D | os_LockPolicy.h | 45 class ScopedLock 48 ScopedLock(const LockObject&) {} in ScopedLock() function 49 ~ScopedLock() {} in ~ScopedLock() 63 class ScopedLock; member 67 friend class ScopedLock; member 75 class ScopedLock : private Locker::ScopedLock 78 ScopedLock(const LockObject& obj) : Locker::ScopedLock(obj.mutex) {} in ScopedLock() function 104 class ScopedLock : private Locker::ScopedLock 107 ScopedLock(const LockObject&) : Locker::ScopedLock(g_Mutex) {} in ScopedLock() function
|
| D | os_SimpleLock.h | 30 class ScopedLock;
|
| D | os_NonRecursiveCriticalSection.h | 98 class ScopedLock; variable
|
| D | os_CriticalSection.h | 132 class ScopedLock; variable
|
| D | os_Mutex.h | 167 class ScopedLock; variable
|
| D | os_Semaphore.h | 162 class ScopedLock; variable
|
| D | os_BlockingQueue.h | 81 typedef typename Locker::ScopedLock ScopedLock; typedef
|
| /CTR-SDK-4.2.5/include/nn/fnd/ |
| D | fnd_ExpHeap.h | 194 typedef typename LockPolicy::ScopedLock ScopedLock; typedef 321 ScopedLock lk(*this); 334 ScopedLock lk(*this); in Free() 359 ScopedLock lk(*this); in ResizeBlock() 373 ScopedLock lk(*this); in VisitAllBlocks() 384 ScopedLock lk(*this); in GetStartAddress() 395 ScopedLock lk(*this); in GetTotalSize() 406 ScopedLock lk(*this); in GetTotalFreeSize() 419 ScopedLock lk(*this); 435 ScopedLock lk(*this); in Adjust() [all …]
|
| D | fnd_FrameHeap.h | 326 typedef typename LockPolicy::ScopedLock ScopedLock; typedef 420 ScopedLock lk(*this); 436 ScopedLock lk(*this); in ResizeBlock() 455 ScopedLock lk(*this); 477 ScopedLock lk(*this); in SaveState() 490 ScopedLock lk(*this); in RestoreState() 509 ScopedLock lk(*this); 522 ScopedLock lk(*this); 533 ScopedLock lk(*this); in GetStartAddress() 544 ScopedLock lk(*this); in GetTotalSize() [all …]
|
| D | fnd_UnitHeap.h | 193 typedef typename LockPolicy::ScopedLock ScopedLock; typedef 312 ScopedLock lk(*this); in Allocate() 323 ScopedLock lk(*this); in Free() 351 ScopedLock lk(*this); in GetAllocatableCount() 361 ScopedLock lk(*this); in GetAllocatedCount() 371 ScopedLock lk(*this); in GetAlignment() 396 ScopedLock lk(*this); in Dump()
|
| D | fnd_BufferManager.h | 127 nn::os::CriticalSection::ScopedLock lk(m_CriticalSection); in Register() 145 nn::os::CriticalSection::ScopedLock lk(m_CriticalSection); in Unregister() 161 nn::os::CriticalSection::ScopedLock lk(m_CriticalSection); in UnregisterOldest() 225 nn::os::CriticalSection::ScopedLock lk(m_CriticalSection); in AllocateBuffer() 254 nn::os::CriticalSection::ScopedLock lk(m_CriticalSection); in DeallocateBuffer()
|
| D | fnd_BuddyHeap.h | 593 typedef typename LockPolicy::ScopedLock ScopedLock; typedef 637 ScopedLock lk(*this); in AllocateByOrder() 649 ScopedLock lk(*this); in Free()
|
| /CTR-SDK-4.2.5/include/nn/util/detail/ |
| D | util_ScopedLockImpl.h | 22 class typeName::ScopedLock \ 27 ScopedLock(typeName& reference) : m_Reference(reference) { m_Reference.lockCall; } \ 28 ~ScopedLock() { m_Reference.unlockCall; } \
|
| /CTR-SDK-4.2.5/sources/libraries/os/ |
| D | os_LightEvent.cpp | 145 SimpleLock::ScopedLock lock(m_Lock); in Signal() 161 SimpleLock::ScopedLock lock(m_Lock); in Pulse() 192 SimpleLock::ScopedLock lock(m_Lock); in ClearSignal()
|
| D | os_AddressSpaceManager.cpp | 43 Lock::ScopedLock scopedLock(m_Lock); in Allocate() 113 Lock::ScopedLock scopedLock(m_Lock); in Free() 124 Lock::ScopedLock scopedLock(m_Lock); in Switch()
|
| D | os_ThreadPool.cpp | 129 nn::os::CriticalSection::ScopedLock locker(m_ExecuteLock); in AddToExecuteQueue() 141 nn::os::CriticalSection::ScopedLock locker(m_WaitLock); in AddToWaitQueue() 159 nn::os::CriticalSection::ScopedLock locker(m_WaitLock); in WaitThreadFunc() 181 nn::os::CriticalSection::ScopedLock locker(m_WaitLock); in WaitThreadFunc() 308 nn::os::CriticalSection::ScopedLock locker(m_ExecuteLock); in AddToExecuteQueue()
|
| D | os_BlockingQueue.cpp | 107 ScopedLock locker(m_cs); in TryEnqueue() 129 ScopedLock locker(m_cs); in ForceEnqueue() 175 ScopedLock locker(m_cs); in TryJam() 215 ScopedLock locker(m_cs); in TryDequeue() 257 ScopedLock locker(m_cs); in TryGetFront()
|
| D | os_ManagedThread.cpp | 52 typedef CriticalSection::ScopedLock ScopedLock; typedef 395 ScopedLock lock(ss.lock); in Enumerate() 408 ScopedLock lock(ss.lock); in Register() 415 ScopedLock lock(ss.lock); in Unregister()
|
| D | os_LightAlarm.cpp | 60 CriticalSection::ScopedLock locker(s_CriticalSection); in SetTimer() 91 CriticalSection::ScopedLock locker(s_CriticalSection); in InsertAlarm() 123 CriticalSection::ScopedLock locker(s_CriticalSection); in LightAlarmThread() 270 CriticalSection::ScopedLock locker(s_CriticalSection); in Cancel()
|
| /CTR-SDK-4.2.5/sources/libraries/dbg/ |
| D | dbg_Instrument.cpp | 152 nn::os::CriticalSection::ScopedLock lock(sCriticalSection); in Initialize() 186 nn::os::CriticalSection::ScopedLock lock(sCriticalSection); in Finalize() 316 nn::os::CriticalSection::ScopedLock lock(sCriticalSection); in SetLogFunction() 323 nn::os::CriticalSection::ScopedLock lock(sCriticalSection); in Dump() 408 nn::os::CriticalSection::ScopedLock lock(sCriticalSection); in Collect() 503 nn::os::CriticalSection::ScopedLock lock(sCriticalSection); in Dump() 561 nn::os::CriticalSection::ScopedLock lock(sCriticalSection); in SetLogFunction()
|
| /CTR-SDK-4.2.5/include/nn/socket/ |
| D | socket_SessionPool.h | 104 os::CriticalSection::ScopedLock lock(m_lock); 150 os::CriticalSection::ScopedLock lock(m_lock); in SemiFinalize() 171 os::CriticalSection::ScopedLock lock(m_lock); in Finalize() 218 os::CriticalSection::ScopedLock lock(m_lock); in TryAllocate() 249 os::CriticalSection::ScopedLock lock(m_lock); in Free()
|
| /CTR-SDK-4.2.5/sources/libraries/fslow/ |
| D | fslow_SafeHandle.cpp | 263 nn::os::CriticalSection::ScopedLock lk(m_CriticalSection); in Register() 305 nn::os::CriticalSection::ScopedLock lk(m_CriticalSection); in Unregister() 409 nn::os::CriticalSection::ScopedLock lk(m_CriticalSection); in FindEntry()
|
| /CTR-SDK-4.2.5/sources/libraries/test/ |
| D | test_XmlOutput.cpp | 351 nn::os::Mutex::ScopedLock lk(m_OutputMutex); in OnAssert()
|