| 189 | } |
| 190 | |
| 191 | lword ByteQueue::CurrentSize() const |
| 192 | { |
| 193 | lword size=0; |
| 194 | |
| 195 | for (ByteQueueNode *current=m_head; current; current=current->next) |
| 196 | size += current->CurrentSize(); |
| 197 | |
| 198 | return size + m_lazyLength; |
| 199 | } |
| 200 | |
| 201 | bool ByteQueue::IsEmpty() const |
| 202 | { |
no outgoing calls
no test coverage detected