Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/sources/libraries/rdt/CTR/
Drdt_Deque.h47 bool IsEmpty(void) const;
135 bool Deque<T, N>::IsEmpty(void) const in IsEmpty() function
168 ASSERTMSG(!IsEmpty(), "You attempt to call PopFront(), but deque is empty."); in PopFront()
177 ASSERTMSG(!IsEmpty(), "You attempt to call const T& Front(), but deque is empty."); in Front()
186 ASSERTMSG(!IsEmpty(), "You attempt to call T& Front(), but deque is empty."); in Front()
195 ASSERTMSG(!IsEmpty(), "You attempt to call const T& Back(), but deque is empty."); in Back()
204 ASSERTMSG(!IsEmpty(), "You attempt to call T& Back(), but deque is empty."); in Back()
Drdt_SendBuffer.cpp116 bool SendBuffer::IsEmpty(void) const in IsEmpty() function in nn::rdt::CTR::SendBuffer
120 return m_ringBuf.IsEmpty(); in IsEmpty()
166 CU_ASSERT(s.IsEmpty()); in Test()
169 CU_ASSERT(!s.IsEmpty()); in Test()
177 CU_ASSERT(!s.IsEmpty()); in Test()
181 CU_ASSERT(s.IsEmpty()); in Test()
Drdt_Queue.h47 bool IsEmpty(void) const;
117 bool Queue<T, N>::IsEmpty(void) const in IsEmpty() function
143 ASSERTMSG(!IsEmpty(), "You attempted to execute Pop(), but queue is empty."); in Pop()
175 if(IsEmpty()) in PrintDebugInfo()
Drdt_RingBuffer.cpp240 CU_ASSERT(r.IsEmpty()); // If just created, should be empty. in Test()
243 CU_ASSERT(!r.IsEmpty()); in Test()
245 CU_ASSERT(r.IsEmpty()); in Test()
280 CU_ASSERT(r.IsEmpty()); in Test()
311 CU_ASSERT(r.IsEmpty()); in Test()
315 CU_ASSERT(!r.IsEmpty()); in Test()
Drdt_ResendQueue.cpp70 if(!m_queue.IsEmpty()) in Push()
92 if(m_queue.IsEmpty()) in Front()
110 while(!m_queue.IsEmpty()) in Remove()
119 if(m_queue.IsEmpty()) in Remove()
137 if(m_queue.IsEmpty()) in IsResendRequired()
Drdt_ReceiveBuffer.cpp146 bool ReceiveBuffer::IsEmpty(void) const in IsEmpty() function in nn::rdt::CTR::ReceiveBuffer
148 return m_ringBuf.IsEmpty(); in IsEmpty()
Drdt_ReceiveBuffer.h103 bool IsEmpty(void) const;
Drdt_SendBuffer.h68 bool IsEmpty(void) const;
Drdt_RingBuffer.h79 bool IsEmpty(void) const { ASSERT(m_initialized); return m_dataLength==0; } in IsEmpty() function
Drdt_ReceiverImpl.h162 bool isReceiveBufferEmpty(void) const { return m_recvBuf.IsEmpty(); } in isReceiveBufferEmpty()
Drdt_SenderImpl.h202 bool isSendBufferEmpty(void) const { return m_sendBuffer.IsEmpty(); } in isSendBufferEmpty()
Drdt_SenderImpl.cpp682 if(m_sendBuffer.IsEmpty()) in sendData()
734 ASSERTMSG(m_sendBuffer.IsEmpty(), "You cannot request FIN if send buffer is not empty."); in sendFinSegment()
/CTR-SDK-4.2.5/include/nn/socket/
Dsocket_SessionPool.h109 NN_TASSERT_(m_listActive.IsEmpty()
110 && m_listInactive.IsEmpty()
111 && m_listFree.IsEmpty());
153 while(!m_listInactive.IsEmpty()) // Can be used in SemiFinalize()
159 while(!m_listFree.IsEmpty()) // Not connected in SemiFinalize()
195 NN_TASSERT_(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_TASSERT_(!m_listInactive.IsEmpty()); in TryAllocate()
[all …]
/CTR-SDK-4.2.5/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
251 if (IsEmpty()) in PushBack()
271 if (IsEmpty()) in PushFront()
291 if (IsEmpty()) in GetBack()
Dfnd_BuddyHeap.h364 bool IsEmpty() const in IsEmpty() function
398 if(!(m_FreeArea[i].IsEmpty())) in GetFreePage()
/CTR-SDK-4.2.5/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()
Dtest_Suite.cpp100 while(!m_Tests.IsEmpty()) in DoRun()
110 while(!m_SubSuites.IsEmpty()) in DoRun()
/CTR-SDK-4.2.5/include/nn/cec/CTR/
Dcec_MessageId.h80 bool IsEmpty(void) const;
/CTR-SDK-4.2.5/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-4.2.5/sources/libraries/fnd/
Dfnd_HeapBase.cpp38 if ( !m_Children.IsEmpty() ) in ~HeapBase()