Home
last modified time | relevance | path

Searched refs:M_LEADINGSPACE (Results 1 – 11 of 11) sorted by relevance

/xnu-11215.41.3/bsd/netinet6/
H A Dah_output.c250 if (M_LEADINGSPACE(m->m_next) < ahlen) { in ah4_output()
H A Dipsec.c2309 if (M_LEADINGSPACE(m->m_next) < hlen) { in ipsec4_encapsulate()
2398 if (M_LEADINGSPACE(m->m_next) < sizeof(struct ip6_hdr)) { in ipsec6_encapsulate()
2474 if (M_LEADINGSPACE(m->m_next) < sizeof(struct ip6_hdr)) { in ipsec64_encapsulate()
2734 if (M_LEADINGSPACE(m->m_next) < hlen) { in ipsec46_encapsulate()
2758 if (M_LEADINGSPACE(m) < sizeof(struct ip6_hdr) - hlen) { in ipsec46_encapsulate()
H A Desp_output.c519 if (M_LEADINGSPACE(md) < esphlen || (md->m_flags & M_EXT) != 0) { in esp_output()
/xnu-11215.41.3/bsd/net/
H A Dbpf.c303 mlen = m->m_ext.ext_size - (int)M_LEADINGSPACE(m); in bpf_copy_uio_to_mbuf_packet()
305 mlen = MHLEN - (int)M_LEADINGSPACE(m); in bpf_copy_uio_to_mbuf_packet()
307 mlen = MLEN - (int)M_LEADINGSPACE(m); in bpf_copy_uio_to_mbuf_packet()
H A Ddlil.c6102 if (M_LEADINGSPACE(m) < ETHER_HDR_LEN) { in dlil_input_packet_list_common()
/xnu-11215.41.3/bsd/kern/
H A Duipc_syscalls.c1742 M_LEADINGSPACE(m); in mbuf_packet_from_uio()
1744 mlen = MHLEN - M_LEADINGSPACE(m); in mbuf_packet_from_uio()
1747 mlen = MLEN - M_LEADINGSPACE(m); in mbuf_packet_from_uio()
H A Duipc_mbuf2.c315 if ((off == 0 || offp) && M_LEADINGSPACE(n->m_next) >= hlen && in m_pulldown()
H A Dkpi_mbuf.c417 return M_LEADINGSPACE(mbuf); in mbuf_leadingspace()
H A Duipc_socket.c2479 M_LEADINGSPACE(m); in sosend()
2481 mlen = MHLEN - M_LEADINGSPACE(m); in sosend()
2484 mlen = MLEN - M_LEADINGSPACE(m); in sosend()
H A Duipc_mbuf.c6182 if (M_LEADINGSPACE(m) >= len &&
/xnu-11215.41.3/bsd/sys/
H A Dmbuf.h972 #define M_LEADINGSPACE(m) \ macro