Home
last modified time | relevance | path

Searched refs:TryAcquire (Results 1 – 5 of 5) sorted by relevance

/CTR-SDK-0.14.4/include/nn/os/
Dos_LightSemaphore.h189 while( ! TryAcquire() ) in Acquire()
204 bool TryAcquire() in TryAcquire() function
242 …: m_Semaphore(wait ? (semaphore.Acquire(), &semaphore) : (semaphore.TryAcquire() ? &semaphore : 0)…
Dos_Semaphore.h136 bool TryAcquire(nn::fnd::TimeSpan timeout) { return this->WaitOne(timeout); } in TryAcquire() function
/CTR-SDK-0.14.4/sources/libraries/os/
Dos_Semaphore.cpp69 return pSemaphore->TryAcquire(TimeSpan::FromNanoSeconds(nanoSeconds)); in nnosSemaphoreTryAcquire()
Dos_LightSemaphore.cpp90 return pLightSemaphore->TryAcquire(); in nnosLightSemaphoreTryAcquire()
/CTR-SDK-0.14.4/include/nn/fnd/
Dfnd_WaitableUnitHeap.h78 if (m_Semaphore.TryAcquire()) in TryAllocate()