Home
last modified time | relevance | path

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

/CTR-SDK-2.4.0/sources/libraries/os/
Dos_BlockingQueue.cpp307 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueInitialize()
308 new (pBlockingQueue) BlockingQueue(); in nnosBlockingQueueInitialize()
314 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueTryInitialize()
315 new (pBlockingQueue) BlockingQueue(); in nnosBlockingQueueTryInitialize()
322 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueFinalize()
324 pBlockingQueue->~BlockingQueue(); in nnosBlockingQueueFinalize()
329 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueTryEnqueue()
335 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueEnqueue()
341 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueTryJam()
347 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueJam()
[all …]
/CTR-SDK-2.4.0/include/nn/os/
Dos_BlockingQueue.h118 class BlockingQueue : private os::detail::BlockingQueueBase<nn::os::CriticalSection>
133 BlockingQueue() {} in BlockingQueue() function
143 BlockingQueue(uptr buffer[], size_t size) : Base(buffer, size) {} in BlockingQueue() function
150 ~BlockingQueue() { Finalize(); } in ~BlockingQueue()
515 NN_UTIL_DETAIL_CLIBIMPL_DEFINE_BUFFER_CLASS(nnosBlockingQueue, nn::os::BlockingQueue, 40 + NN_OS_CR…