Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/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-4.2.5/include/nn/os/
Dos_InterCoreBlockingQueue.h25 typedef BlockingQueue InterCoreBlockingQueue;
Dos_BlockingQueue.h120 class BlockingQueue : private os::detail::BlockingQueueBase<nn::os::CriticalSection>
135 BlockingQueue() {} in BlockingQueue() function
145 BlockingQueue(uptr buffer[], size_t size) : Base(buffer, size) {} in BlockingQueue() function
152 ~BlockingQueue() { Finalize(); } in ~BlockingQueue()
519 NN_UTIL_DETAIL_CLIBIMPL_DEFINE_BUFFER_CLASS(nnosBlockingQueue, nn::os::BlockingQueue, 40 + NN_OS_CR…