Home
last modified time | relevance | path

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

/CTR-SDK-1.3.0/CTR_SDK/sources/libraries/os/
Dos_BlockingQueue.cpp377 SafeBlockingQueue* pBlockingQueue = reinterpret_cast<SafeBlockingQueue*>(this_); in nnosSafeBlockingQueueInitialize()
378 new (pBlockingQueue) SafeBlockingQueue(); in nnosSafeBlockingQueueInitialize()
384 SafeBlockingQueue* pBlockingQueue = reinterpret_cast<SafeBlockingQueue*>(this_); in nnosSafeBlockingQueueTryInitialize()
385 new (pBlockingQueue) SafeBlockingQueue(); in nnosSafeBlockingQueueTryInitialize()
392 SafeBlockingQueue* pBlockingQueue = reinterpret_cast<SafeBlockingQueue*>(this_); in nnosSafeBlockingQueueFinalize()
394 pBlockingQueue->~SafeBlockingQueue(); in nnosSafeBlockingQueueFinalize()
399 SafeBlockingQueue* pBlockingQueue = reinterpret_cast<SafeBlockingQueue*>(this_); in nnosSafeBlockingQueueTryEnqueue()
405 SafeBlockingQueue* pBlockingQueue = reinterpret_cast<SafeBlockingQueue*>(this_); in nnosSafeBlockingQueueEnqueue()
411 SafeBlockingQueue* pBlockingQueue = reinterpret_cast<SafeBlockingQueue*>(this_); in nnosSafeBlockingQueueTryJam()
417 SafeBlockingQueue* pBlockingQueue = reinterpret_cast<SafeBlockingQueue*>(this_); in nnosSafeBlockingQueueJam()
[all …]
/CTR-SDK-1.3.0/CTR_SDK/include/nn/os/
Dos_BlockingQueue.h309 class SafeBlockingQueue : private os::detail::BlockingQueueBase<nn::os::Mutex>
320 SafeBlockingQueue() {} in SafeBlockingQueue() function
330 SafeBlockingQueue(uptr buffer[], size_t size) : Base(buffer, size) {} in SafeBlockingQueue() function
337 ~SafeBlockingQueue() {} in ~SafeBlockingQueue()
596 NN_UTIL_DETAIL_CLIBIMPL_DEFINE_BUFFER_CLASS(nnosSafeBlockingQueue, nn::os::SafeBlockingQueue, 44, u…