Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/include/nn/os/
Dos_LightSemaphore.h212 while( ! TryAcquire() ) in Acquire()
229 bool TryAcquire() in TryAcquire() function
267 …: m_Semaphore(wait ? (semaphore.Acquire(), &semaphore) : (semaphore.TryAcquire() ? &semaphore : 0)…
Dos_InterCoreLightSemaphore.h213 while( ! TryAcquire() ) in Acquire()
230 bool TryAcquire() in TryAcquire() function
270 …: m_Semaphore(wait ? (semaphore.Acquire(), &semaphore) : (semaphore.TryAcquire() ? &semaphore : 0)…
Dos_Semaphore.h139 bool TryAcquire(nn::fnd::TimeSpan timeout) { return this->WaitOne(timeout); } in TryAcquire() function
/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/os/
Dos_Semaphore.cpp69 return pSemaphore->TryAcquire(TimeSpan::FromNanoSeconds(nanoSeconds)); in nnosSemaphoreTryAcquire()
Dos_InterCoreLightSemaphore.cpp98 return pInterCoreLightSemaphore->TryAcquire(); in nnosInterCoreLightSemaphoreTryAcquire()
Dos_LightSemaphore.cpp97 return pLightSemaphore->TryAcquire(); in nnosLightSemaphoreTryAcquire()
/CTR-SDK-1.0.0/CTR_SDK/include/nn/fnd/
Dfnd_WaitableUnitHeap.h78 if (m_Semaphore.TryAcquire()) in TryAllocate()