| /xnu-11215/bsd/netinet6/ |
| H A D | udp6_output.c | 619 stats_functional_type ifnet_count_type = stats_functional_type_none; in udp6_output() local 622 ifnet_count_type = IFNET_COUNT_TYPE(in6p->in6p_route. in udp6_output() 625 INP_ADD_STAT(in6p, ifnet_count_type, txpackets, 1); in udp6_output() 626 INP_ADD_STAT(in6p, ifnet_count_type, txbytes, ulen); in udp6_output()
|
| H A D | udp6_usrreq.c | 225 stats_functional_type ifnet_count_type = IFNET_COUNT_TYPE(ifp); in udp6_append() local 226 INP_ADD_STAT(last, ifnet_count_type, rxpackets, 1); in udp6_append() 227 INP_ADD_STAT(last, ifnet_count_type, rxbytes, n->m_pkthdr.len); in udp6_append() 251 stats_functional_type ifnet_count_type = stats_functional_type_none; in udp6_input() local 648 ifnet_count_type = IFNET_COUNT_TYPE(ifp); in udp6_input() 649 INP_ADD_STAT(in6p, ifnet_count_type, rxpackets, 1); in udp6_input() 650 INP_ADD_STAT(in6p, ifnet_count_type, rxbytes, m->m_pkthdr.len); in udp6_input()
|
| /xnu-11215/bsd/netinet/ |
| H A D | udp_usrreq.c | 773 stats_functional_type ifnet_count_type = IFNET_COUNT_TYPE(ifp); in udp_input() local 774 INP_ADD_STAT(inp, ifnet_count_type, rxpackets, 1); in udp_input() 775 INP_ADD_STAT(inp, ifnet_count_type, rxbytes, m->m_pkthdr.len); in udp_input() 886 stats_functional_type ifnet_count_type = IFNET_COUNT_TYPE(ifp); in udp_append() local 887 INP_ADD_STAT(last, ifnet_count_type, rxpackets, 1); in udp_append() 888 INP_ADD_STAT(last, ifnet_count_type, rxbytes, in udp_append() 2073 stats_functional_type ifnet_count_type = stats_functional_type_none; in udp_output() local 2076 ifnet_count_type = IFNET_COUNT_TYPE(ro.ro_rt->rt_ifp); in udp_output() 2078 INP_ADD_STAT(inp, ifnet_count_type, txpackets, 1); in udp_output() 2079 INP_ADD_STAT(inp, ifnet_count_type, txbytes, len); in udp_output()
|
| H A D | tcp_input.c | 668 INP_ADD_STAT(inp, ifnet_count_type, in tcp_reass() 670 INP_ADD_STAT(inp, ifnet_count_type, in tcp_reass() 706 INP_ADD_STAT(inp, ifnet_count_type, rxpackets, 1); in tcp_reass() 707 INP_ADD_STAT(inp, ifnet_count_type, rxbytes, *tlenp); in tcp_reass() 3372 INP_ADD_STAT(inp, ifnet_count_type, in tcp_input() 3374 INP_ADD_STAT(inp, ifnet_count_type, rxbytes, in tcp_input() 4284 INP_ADD_STAT(inp, ifnet_count_type, in tcp_input() 4286 INP_ADD_STAT(inp, ifnet_count_type, in tcp_input() 4385 INP_ADD_STAT(inp, ifnet_count_type, rxpackets, 1); in tcp_input() 5775 INP_ADD_STAT(inp, ifnet_count_type, in tcp_input() [all …]
|
| H A D | tcp_output.c | 743 stats_functional_type ifnet_count_type = stats_functional_type_none; in tcp_output() local 945 ifnet_count_type = IFNET_COUNT_TYPE(rt->rt_ifp); in tcp_output() 2396 INP_ADD_STAT(inp, ifnet_count_type, in tcp_output() 2398 INP_ADD_STAT(inp, ifnet_count_type, in tcp_output() 2411 INP_ADD_STAT(inp, ifnet_count_type, in tcp_output() 2413 INP_ADD_STAT(inp, ifnet_count_type, in tcp_output()
|
| H A D | flow_divert.c | 645 stats_functional_type ifnet_count_type = stats_functional_type_none; in flow_divert_add_data_statistics() local 658 ifnet_count_type = IFNET_COUNT_TYPE(ifp); in flow_divert_add_data_statistics() 662 INP_ADD_STAT(inp, ifnet_count_type, txpackets, 1); in flow_divert_add_data_statistics() 663 INP_ADD_STAT(inp, ifnet_count_type, txbytes, data_len); in flow_divert_add_data_statistics() 665 INP_ADD_STAT(inp, ifnet_count_type, rxpackets, 1); in flow_divert_add_data_statistics() 666 INP_ADD_STAT(inp, ifnet_count_type, rxbytes, data_len); in flow_divert_add_data_statistics()
|