Home
last modified time | relevance | path

Searched refs:m_drop_list (Results 1 – 10 of 10) sorted by relevance

/xnu-11417.121.6/bsd/net/
H A Ddlil_input.c349 m_drop_list(m, ifproto->ifp, DROPTAP_FLAG_DIR_IN, DROP_REASON_DLIL_IF_FILTER, NULL, 0); in dlil_ifproto_input()
491 m_drop_list(MBUFQ_FIRST(&freeq), ifp, DROPTAP_FLAG_DIR_IN, DROP_REASON_DLIL_BURST_LIMIT, NULL, 0); in dlil_input_async()
594 m_drop_list(MBUFQ_FIRST(&freeq), ifp, DROPTAP_FLAG_DIR_IN, DROP_REASON_DLIL_BURST_LIMIT, NULL, 0); in dlil_input_sync()
H A Ddlil.c3397 m_drop_list(m_head, ifp, DROPTAP_FLAG_DIR_OUT, DROP_REASON_DLIL_ENQUEUE_IF_NOT_ATTACHED, NULL, 0); in ifnet_enqueue_mbuf_chain()
3401 m_drop_list(m_head, ifp, DROPTAP_FLAG_DIR_OUT, DROP_REASON_DLIL_ENQUEUE_IF_NOT_UP, NULL, 0); in ifnet_enqueue_mbuf_chain()
/xnu-11417.121.6/bsd/net/pktsched/
H A Dpktsched.c402 m_drop_list(m, ifp, flags | DROPTAP_FLAG_DIR_OUT, reason, funcname, linenum); in pktsched_drop_pkt()
/xnu-11417.121.6/bsd/netinet/
H A Dtcp_output.c907m_drop_list(tp->t_pktlist_head, NULL, DROPTAP_FLAG_DIR_OUT | DROPTAP_FLAG_L2_MISSING, DROP_REASON_… in tcp_output()
3335m_drop_list(tp->t_pktlist_head, NULL, DROPTAP_FLAG_DIR_OUT | DROPTAP_FLAG_L2_MISSING, DROP_REASON_… in tcp_output()
3637m_drop_list(npkt, NULL, DROPTAP_FLAG_DIR_OUT | DROPTAP_FLAG_L2_MISSING, DROP_REASON_TCP_PKT_UNSENT… in tcp_ip_output()
H A Dip_input.c1442m_drop_list(m, NULL, DROPTAP_FLAG_DIR_IN | DROPTAP_FLAG_L2_MISSING, DROP_REASON_IP_RCV_IF_NO_MATCH… in ip_input_check_interface()
1530m_drop_list(m, NULL, DROPTAP_FLAG_DIR_IN | DROPTAP_FLAG_L2_MISSING, DROP_REASON_IP_UNKNOWN_MULTICA… in ip_input_second_pass()
2662m_drop_list(fp->ipq_frags, NULL, DROPTAP_FLAG_DIR_IN | DROPTAP_FLAG_L2_MISSING, drop_reason, NULL,… in frag_freef()
H A Dmptcp.c402m_drop_list(m, NULL, DROPTAP_FLAG_DIR_IN | DROPTAP_FLAG_L2_MISSING, DROP_REASON_MPTCP_INPUT_MALFOR… in mptcp_input()
H A Dip_output.c1876 m_drop_list(m0, ifp, DROPTAP_FLAG_DIR_OUT | DROPTAP_FLAG_L2_MISSING, drop_reason, NULL, 0); in ip_output_list()
/xnu-11417.121.6/bsd/sys/
H A Dmbuf.h1443 extern void m_drop_list(mbuf_t, struct ifnet *, uint16_t, uint32_t, const char *, uint16_t);
/xnu-11417.121.6/bsd/netinet6/
H A Dip6_output.c1982m_drop_list(first_mbufp, ifp, DROPTAP_FLAG_DIR_OUT | DROPTAP_FLAG_L2_MISSING, drop_reason, NULL, 0… in ip6_do_fragmentation()
/xnu-11417.121.6/bsd/kern/
H A Duipc_mbuf.c6016 m_drop_list(mbuf_t m, struct ifnet *ifp, uint16_t flags, uint32_t reason, const char *funcname, function