Home
last modified time | relevance | path

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

/CTR-SDK-0.14.4/sources/libraries/os/
Dos_BlockingQueue.cpp309 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueInitialize()
310 new (pBlockingQueue) BlockingQueue(); in nnosBlockingQueueInitialize()
316 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueTryInitialize()
317 new (pBlockingQueue) BlockingQueue(); in nnosBlockingQueueTryInitialize()
324 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueFinalize()
326 pBlockingQueue->~BlockingQueue(); in nnosBlockingQueueFinalize()
331 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueTryEnqueue()
337 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueEnqueue()
343 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueTryJam()
349 BlockingQueue* pBlockingQueue = reinterpret_cast<BlockingQueue*>(this_); in nnosBlockingQueueJam()
[all …]
/CTR-SDK-0.14.4/include/nn/os/
Dos_BlockingQueue.h119 class BlockingQueue : private os::detail::BlockingQueueBase<nn::os::CriticalSection>
134 BlockingQueue() {} in BlockingQueue() function
144 BlockingQueue(uptr buffer[], size_t size) : Base(buffer, size) {} in BlockingQueue() function
151 ~BlockingQueue() { Finalize(); } in ~BlockingQueue()
708 NN_UTIL_DETAIL_CLIBIMPL_DEFINE_BUFFER_CLASS(nnosBlockingQueue, nn::os::BlockingQueue, 40 + NN_OS_CR…