Searched defs:M_EXT (Results 1 - 3 of 3) sorted by relevance

/external/qemu/slirp/
H A Dmbuf.h52 * If the data is too large, the M_EXT is used, and a larger block
53 * is alloced. Therefore, m_free[m] must check for M_EXT and if set
76 #define M_ROOM(m) ((m->m_flags & M_EXT)? \
113 #define M_EXT 0x01 /* m_ext points to more (malloced) data */ macro
/external/qemu/slirp-android/
H A Dmbuf.h52 * If the data is too large, the M_EXT is used, and a larger block
53 * is alloced. Therefore, m_free[m] must check for M_EXT and if set
76 #define M_ROOM(m) ((m->m_flags & M_EXT)? \
113 #define M_EXT 0x01 /* m_ext points to more (malloced) data */ macro
/external/chromium_org/third_party/usrsctp/usrsctplib/
H A Duser_mbuf.h213 * Description of external storage mapped into mbuf; valid only if M_EXT is
237 struct m_ext MH_ext; /* M_EXT set */
241 char M_databuf[MLEN]; /* !M_PKTHDR, !M_EXT */
261 #define M_EXT 0x0001 /* has associated external storage */ macro
359 * whether M_EXT is set).
362 (!(((m)->m_flags & M_EXT)) || \
374 ((m)->m_flags & M_EXT ? \
386 ((m)->m_flags & M_EXT ? \
419 KASSERT(!((m)->m_flags & (M_PKTHDR|M_EXT)), \
431 KASSERT((m)->m_flags & M_PKTHDR && !((m)->m_flags & M_EXT), \
[all...]

Completed in 427 milliseconds