Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/sources/libraries/os/
Dos_LightSemaphore.cpp47 bool LightSemaphore::TryAcquire(fnd::TimeSpan timeout) in TryAcquire() function in nn::os::LightSemaphore
49 if( TryAcquire() ) in TryAcquire()
75 } while( ! TryAcquire() ); in TryAcquire()
130 return pLightSemaphore->TryAcquire(); in nnosLightSemaphoreTryAcquire()
Dos_Semaphore.cpp87 return pSemaphore->TryAcquire(TimeSpan::FromNanoSeconds(nanoSeconds)); in nnosSemaphoreTryAcquire()
/CTR-SDK-4.2.5/include/nn/os/
Dos_LightSemaphore.h215 while( ! TryAcquire() ) in Acquire()
234 bool TryAcquire() in TryAcquire() function
256 bool TryAcquire(fnd::TimeSpan timeout);
290 …: m_Semaphore(wait ? (semaphore.Acquire(), &semaphore) : (semaphore.TryAcquire() ? &semaphore : 0)…
Dos_Semaphore.h141 bool TryAcquire(nn::fnd::TimeSpan timeout) { return this->WaitOne(timeout); } in TryAcquire() function
/CTR-SDK-4.2.5/include/nn/fnd/
Dfnd_WaitableUnitHeap.h78 if (m_Semaphore.TryAcquire()) in TryAllocate()