Searched refs:M_PKTHDR (Results 1 – 6 of 6) sorted by relevance
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/ |
D | user_mbuf.c | 91 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 …]
|
D | user_mbuf.h | 236 #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/ |
D | sctp_bsd_addr.c | 780 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);
|
D | sctp_os_userspace.h | 801 #define SCTP_ALIGN_TO_END(m, len) if(m->m_flags & M_PKTHDR) { \
|
D | sctputil.c | 8081 if ((m->m_flags & M_PKTHDR) == 0) {
|
D | sctp_output.c | 13090 (M_PKTHDR | (user_marks_eor ? M_EOR : 0)));
|