Home
last modified time | relevance | path

Searched refs:M_PKTHDR (Results 1 – 6 of 6) sorted by relevance

/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/
Duser_mbuf.c91 if (flags & M_PKTHDR) { in mbuf_constructor_dup()
161 mbuf_mb_args.flags = M_PKTHDR; in m_gethdr()
176 if (! ((mret->m_flags & M_PKTHDR) && (mret->m_type == type)) ) { in m_gethdr()
177 mbuf_constructor_dup(mret, M_PKTHDR, type); in m_gethdr()
180 mbuf_constructor_dup(mret, M_PKTHDR, type); in m_gethdr()
297 flags &= (M_PKTHDR | M_EOR); in m_getm2()
300 if ((flags & M_PKTHDR) && m != NULL) { in m_getm2()
301 flags &= ~M_PKTHDR; in m_getm2()
316 } else if (flags & M_PKTHDR) { in m_getm2()
351 flags &= ~M_PKTHDR; /* Only valid on the first mbuf. */ in m_getm2()
[all …]
Duser_mbuf.h236 #define M_PKTHDR 0x0002 /* start of record */ macro
250 #define M_COPYFLAGS (M_PKTHDR|M_EOR|M_RDONLY|M_PROTO1|M_PROTO1|M_PROTO2|\
346 ((m)->m_flags & M_PKTHDR)? (m)->m_data - (m)->m_pktdat : \
379 if (_mm != NULL && _mm->m_flags & M_PKTHDR) \
389 KASSERT(!((m)->m_flags & (M_PKTHDR|M_EXT)), \
401 KASSERT((m)->m_flags & M_PKTHDR && !((m)->m_flags & M_EXT), \
410 ((m)->m_flags & M_PKTHDR) ? MHLEN : \
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_bsd_addr.c780 m = m_getm2(NULL, space_needed, how, type, want_header ? M_PKTHDR : 0, allonebuf);
782 m = m_getm2(NULL, space_needed, how, type, want_header ? M_PKTHDR : 0);
Dsctp_os_userspace.h801 #define SCTP_ALIGN_TO_END(m, len) if(m->m_flags & M_PKTHDR) { \
Dsctputil.c8081 if ((m->m_flags & M_PKTHDR) == 0) {
Dsctp_output.c13090 (M_PKTHDR | (user_marks_eor ? M_EOR : 0)));