Lines Matching refs:Mbuf
168 class Mbuf : public nnnetOslMbuf
181 Mbuf(FreeIndex nextFree) in Mbuf() function
199 Mbuf* GetNext(void) in GetNext()
201 return reinterpret_cast<Mbuf*>(m_next); in GetNext()
204 const Mbuf* GetNext(void) const in GetNext()
206 return reinterpret_cast<const Mbuf*>(m_next); in GetNext()
209 Mbuf* GetPrevious(void) in GetPrevious()
211 return reinterpret_cast<Mbuf*>(m_prev); in GetPrevious()
214 const Mbuf* GetPrevious(void) const in GetPrevious()
216 return reinterpret_cast<const Mbuf*>(m_prev); in GetPrevious()
219 void SetNext(Mbuf* pMbuf) in SetNext()
224 void SetPrevious(Mbuf* pMbuf) in SetPrevious()
232 Mbuf* Unlink(void) in Unlink()
234 Mbuf* pNext = GetNext(); in Unlink()
247 void CopyFrom(const Mbuf* pSource);
249 Mbuf* GetTail(void);
250 const Mbuf* GetHead(void) const;
374 void Link(Mbuf* pNext) in Link()