Home
last modified time | relevance | path

Searched refs:IsEmpty (Results 1 – 25 of 26) sorted by relevance

12

/CTR-SDK-0.14.4/sources/libraries/rdt/CTR/
Drdt_Deque.h49 bool IsEmpty(void) const;
137 bool Deque<T, N>::IsEmpty(void) const in IsEmpty() function
170 ASSERTMSG(!IsEmpty(), "You attempt to call PopFront(), but deque is empty."); in PopFront()
179 ASSERTMSG(!IsEmpty(), "You attempt to call const T& Front(), but deque is empty."); in Front()
188 ASSERTMSG(!IsEmpty(), "You attempt to call T& Front(), but deque is empty."); in Front()
197 ASSERTMSG(!IsEmpty(), "You attempt to call const T& Back(), but deque is empty."); in Back()
206 ASSERTMSG(!IsEmpty(), "You attempt to call T& Back(), but deque is empty."); in Back()
Drdt_SendBuffer.cpp118 bool SendBuffer::IsEmpty(void) const in IsEmpty() function in nn::rdt::CTR::SendBuffer
122 return m_ringBuf.IsEmpty(); in IsEmpty()
168 CU_ASSERT(s.IsEmpty()); in Test()
171 CU_ASSERT(!s.IsEmpty()); in Test()
179 CU_ASSERT(!s.IsEmpty()); in Test()
183 CU_ASSERT(s.IsEmpty()); in Test()
Drdt_Queue.h49 bool IsEmpty(void) const;
119 bool Queue<T, N>::IsEmpty(void) const in IsEmpty() function
145 ASSERTMSG(!IsEmpty(), "You attempt to execute Pop(), but queue is empty."); in Pop()
177 if(IsEmpty()) in PrintDebugInfo()
Drdt_RingBuffer.cpp242 CU_ASSERT(r.IsEmpty()); // 作ったばかりなら、カラッポのはず。 in Test()
245 CU_ASSERT(!r.IsEmpty()); in Test()
247 CU_ASSERT(r.IsEmpty()); in Test()
282 CU_ASSERT(r.IsEmpty()); in Test()
313 CU_ASSERT(r.IsEmpty()); in Test()
317 CU_ASSERT(!r.IsEmpty()); in Test()
Drdt_ResendQueue.cpp72 if(!m_queue.IsEmpty()) in Push()
94 if(m_queue.IsEmpty()) in Front()
112 while(!m_queue.IsEmpty()) in Remove()
121 if(m_queue.IsEmpty()) in Remove()
139 if(m_queue.IsEmpty()) in IsResendRequired()
Drdt_ReceiveBuffer.h105 bool IsEmpty(void) const;
Drdt_SendBuffer.h70 bool IsEmpty(void) const;
Drdt_ReceiveBuffer.cpp148 bool ReceiveBuffer::IsEmpty(void) const in IsEmpty() function in nn::rdt::CTR::ReceiveBuffer
150 return m_ringBuf.IsEmpty(); in IsEmpty()
Drdt_RingBuffer.h81 bool IsEmpty(void) const { ASSERT(m_initialized); return m_dataLength==0; } in IsEmpty() function
Drdt_ReceiverImpl.h164 bool isReceiveBufferEmpty(void) const { return m_recvBuf.IsEmpty(); } in isReceiveBufferEmpty()
Drdt_SenderImpl.h204 bool isSendBufferEmpty(void) const { return m_sendBuffer.IsEmpty(); } in isSendBufferEmpty()
Drdt_SenderImpl.cpp687 if(m_sendBuffer.IsEmpty()) in sendData()
739 ASSERTMSG(m_sendBuffer.IsEmpty(), "You cannot request FIN if send buffer is not empty."); in sendFinSegment()
/CTR-SDK-0.14.4/include/nn/socket/
Dsocket_SessionPool.h109 NN_ASSERT(m_listActive.IsEmpty()
110 && m_listInactive.IsEmpty()
111 && m_listFree.IsEmpty());
153 while(!m_listInactive.IsEmpty()) // 使用可能 in SemiFinalize()
159 while(!m_listFree.IsEmpty()) // 未接続 in SemiFinalize()
195 NN_ASSERT(m_listActive.IsEmpty() in Finalize()
196 && m_listInactive.IsEmpty() in Finalize()
197 && m_listFree.IsEmpty()); in Finalize()
227 if (m_listInactive.IsEmpty()) in TryAllocate()
236 NN_ASSERT(!m_listInactive.IsEmpty()); in TryAllocate()
[all …]
/CTR-SDK-0.14.4/include/nn/fnd/
Dfnd_Queue.h50 bool IsEmpty() const { return m_Head == 0; } in IsEmpty() function
102 if (IsEmpty()) in Enqueue()
117 if (IsEmpty()) in Dequeue()
Dfnd_LinkedList.h95 bool IsEmpty() const { return !m_Head; } in IsEmpty() function
250 if (IsEmpty()) in PushBack()
270 if (IsEmpty()) in PushFront()
290 if (IsEmpty()) in GetBack()
Dfnd_BuddyHeap.h364 bool IsEmpty() const in IsEmpty() function
398 if(!(m_FreeArea[i].IsEmpty())) in GetFreePage()
/CTR-SDK-0.14.4/sources/libraries/test/
Dtest_XmlOutput.cpp190 if(m_Value != "" && !m_Children.IsEmpty()) in Print()
202 else if(!m_Children.IsEmpty()) in Print()
226 if(!m_Children.IsEmpty()) in GetSpecificChildrenNum()
263 NN_TASSERT_(m_Results.IsEmpty()); in OnInitialize()
Dtest_TextOutput.cpp81 while(!assertInfos.IsEmpty()) in OnFinished()
/CTR-SDK-0.14.4/include/nn/net/osl/
Dosl_IpcDispatcher.h284 if (m_freeList.IsEmpty()) in GetFreeWorker()
329 while(!m_freeList.IsEmpty() || !m_activeList.IsEmpty()) in DestructWorkerList()
331 while(!m_freeList.IsEmpty()) in DestructWorkerList()
337 if(!m_activeList.IsEmpty()) in DestructWorkerList()
Dosl_BuddyHeap.h278 bool IsEmpty() const in IsEmpty() function
300 if(!(m_FreeArea[i].IsEmpty())) in GetFreePage()
/CTR-SDK-0.14.4/include/nn/cec/CTR/
Dcec_MessageId.h67 bool IsEmpty(void) const;
/CTR-SDK-0.14.4/build/omake/
Ddebuggerdefs.partner.om66 private.IsEmpty(seq) =
91 if $(IsEmpty $(attributes))
98 if $(and $(IsEmpty $(has_excludes)), $(not $(IsEmpty $(has_includes))))
175 if $(and $(not $(defined RUN_TIMEOUT)), $(not $(IsEmpty $(filter dotests-%, $(TARGETS)))))
179 if $(and $(not $(defined EXIT_PATTERN)), $(not $(IsEmpty $(filter dotests-%, $(TARGETS)))))
/CTR-SDK-0.14.4/include/nn/util/ARMv6/
Dutil_LockFreeQueueImpl.h110 bool IsEmpty() const in IsEmpty() function
128 using LockFreeQueueImplBase::IsEmpty;
/CTR-SDK-0.14.4/sources/libraries/os/
Dos_ThreadPool.cpp162 for (; m_WaitingCount < m_NumMaxWaitObjects && !m_WaitQueue.IsEmpty(); ++m_WaitingCount) in WaitThreadFunc()
213 if (!m_ExecuteQueue.IsEmpty()) in ExecuteThreadFunc()
280 if (!m_ExecuteQueue.IsEmpty()) in ExecuteThreadFunc()
/CTR-SDK-0.14.4/sources/libraries/fnd/
Dfnd_HeapBase.cpp38 if ( !m_Children.IsEmpty() ) in ~HeapBase()

12