Home
last modified time | relevance | path

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

/xnu-11417.140.69/bsd/netinet/
H A Din_pcblist.c198 xst->xst_tc_stats[i].rxpackets = so->so_tc_stats[i].rxpackets; in sbtoxsockstat_n()
199 xst->xst_tc_stats[i].rxbytes = so->so_tc_stats[i].rxbytes; in sbtoxsockstat_n()
200 xst->xst_tc_stats[i].txpackets = so->so_tc_stats[i].txpackets; in sbtoxsockstat_n()
201 xst->xst_tc_stats[i].txbytes = so->so_tc_stats[i].txbytes; in sbtoxsockstat_n()
H A Dudp_log.c383 so->so_tc_stats[SO_STATS_SBNOSPACE].rxpackets, \ in udp_log_connection_summary()
384 so->so_tc_stats[SO_STATS_SBNOSPACE].rxbytes, \ in udp_log_connection_summary()
H A Din_tclass.c1106 so->so_tc_stats[SO_STATS_DATA].rxpackets += 1; in so_recv_data_stat()
1107 so->so_tc_stats[SO_STATS_DATA].rxbytes += in so_recv_data_stat()
1114 so->so_tc_stats[SO_STATS_DATA].rxpackets += pkts; in so_inc_recv_data_stat()
1115 so->so_tc_stats[SO_STATS_DATA].rxbytes += bytes; in so_inc_recv_data_stat()
H A Dtcp_subr.c1374 ifs->bk_txpackets = so->so_tc_stats[MBUF_TC_BK].txpackets; in tcp_create_ifnet_stats_per_flow()
/xnu-11417.140.69/bsd/kern/
H A Duipc_socket2.c839 so->so_tc_stats[SO_STATS_DATA].txpackets += num_pkts; in so_update_tx_data_stats()
840 so->so_tc_stats[SO_STATS_DATA].txbytes += space; in so_update_tx_data_stats()
847 sb->sb_so->so_tc_stats[SO_STATS_DATA].rxpackets += 1; in sb_update_data_stats()
848 sb->sb_so->so_tc_stats[SO_STATS_DATA].rxbytes += space; in sb_update_data_stats()
850 sb->sb_so->so_tc_stats[SO_STATS_DATA].txpackets += 1; in sb_update_data_stats()
851 sb->sb_so->so_tc_stats[SO_STATS_DATA].txbytes += space; in sb_update_data_stats()
859 sb->sb_so->so_tc_stats[SO_STATS_SBNOSPACE].rxpackets += 1; in sb_update_no_space_stats()
860 sb->sb_so->so_tc_stats[SO_STATS_SBNOSPACE].rxbytes += space; in sb_update_no_space_stats()
862 sb->sb_so->so_tc_stats[SO_STATS_SBNOSPACE].txpackets += 1; in sb_update_no_space_stats()
863 sb->sb_so->so_tc_stats[SO_STATS_SBNOSPACE].txbytes += space; in sb_update_no_space_stats()
/xnu-11417.140.69/bsd/sys/
H A Dsocketvar.h330 struct data_stats so_tc_stats[SO_TC_STATS_MAX]; member