| /CTR-SDK-4.2.5/sources/libraries/rdt/CTR/ |
| D | rdt_Deque.h | 47 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()
|
| D | rdt_SendBuffer.cpp | 116 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()
|
| D | rdt_Queue.h | 47 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()
|
| D | rdt_RingBuffer.cpp | 240 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()
|
| D | rdt_ResendQueue.cpp | 70 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()
|
| D | rdt_ReceiveBuffer.cpp | 146 bool ReceiveBuffer::IsEmpty(void) const in IsEmpty() function in nn::rdt::CTR::ReceiveBuffer 148 return m_ringBuf.IsEmpty(); in IsEmpty()
|
| D | rdt_ReceiveBuffer.h | 103 bool IsEmpty(void) const;
|
| D | rdt_SendBuffer.h | 68 bool IsEmpty(void) const;
|
| D | rdt_RingBuffer.h | 79 bool IsEmpty(void) const { ASSERT(m_initialized); return m_dataLength==0; } in IsEmpty() function
|
| D | rdt_ReceiverImpl.h | 162 bool isReceiveBufferEmpty(void) const { return m_recvBuf.IsEmpty(); } in isReceiveBufferEmpty()
|
| D | rdt_SenderImpl.h | 202 bool isSendBufferEmpty(void) const { return m_sendBuffer.IsEmpty(); } in isSendBufferEmpty()
|
| D | rdt_SenderImpl.cpp | 682 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/ |
| D | socket_SessionPool.h | 109 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/ |
| D | fnd_Queue.h | 50 bool IsEmpty() const { return m_Head == 0; } in IsEmpty() function 102 if (IsEmpty()) in Enqueue() 117 if (IsEmpty()) in Dequeue()
|
| D | fnd_LinkedList.h | 95 bool IsEmpty() const { return !m_Head; } in IsEmpty() function 251 if (IsEmpty()) in PushBack() 271 if (IsEmpty()) in PushFront() 291 if (IsEmpty()) in GetBack()
|
| D | fnd_BuddyHeap.h | 364 bool IsEmpty() const in IsEmpty() function 398 if(!(m_FreeArea[i].IsEmpty())) in GetFreePage()
|
| /CTR-SDK-4.2.5/sources/libraries/test/ |
| D | test_XmlOutput.cpp | 190 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()
|
| D | test_TextOutput.cpp | 81 while(!assertInfos.IsEmpty()) in OnFinished()
|
| D | test_Suite.cpp | 100 while(!m_Tests.IsEmpty()) in DoRun() 110 while(!m_SubSuites.IsEmpty()) in DoRun()
|
| /CTR-SDK-4.2.5/include/nn/cec/CTR/ |
| D | cec_MessageId.h | 80 bool IsEmpty(void) const;
|
| /CTR-SDK-4.2.5/sources/libraries/os/ |
| D | os_ThreadPool.cpp | 162 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/ |
| D | fnd_HeapBase.cpp | 38 if ( !m_Children.IsEmpty() ) in ~HeapBase()
|