Home
last modified time | relevance | path

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

/xnu-12377.41.6/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.c1054 so->so_tc_stats[SO_STATS_DATA].rxpackets += 1; in so_recv_data_stat()
1055 so->so_tc_stats[SO_STATS_DATA].rxbytes += in so_recv_data_stat()
1062 so->so_tc_stats[SO_STATS_DATA].rxpackets += pkts; in so_inc_recv_data_stat()
1063 so->so_tc_stats[SO_STATS_DATA].rxbytes += bytes; in so_inc_recv_data_stat()
H A Dtcp_subr.c1554 ifs->bk_txpackets = so->so_tc_stats[MBUF_TC_BK].txpackets; in tcp_create_ifnet_stats_per_flow()
/xnu-12377.41.6/bsd/kern/
H A Duipc_socket2.c841 so->so_tc_stats[SO_STATS_DATA].txpackets += num_pkts; in so_update_tx_data_stats()
842 so->so_tc_stats[SO_STATS_DATA].txbytes += space; in so_update_tx_data_stats()
849 sb->sb_so->so_tc_stats[SO_STATS_DATA].rxpackets += 1; in sb_update_data_stats()
850 sb->sb_so->so_tc_stats[SO_STATS_DATA].rxbytes += space; in sb_update_data_stats()
852 sb->sb_so->so_tc_stats[SO_STATS_DATA].txpackets += 1; in sb_update_data_stats()
853 sb->sb_so->so_tc_stats[SO_STATS_DATA].txbytes += space; in sb_update_data_stats()
861 sb->sb_so->so_tc_stats[SO_STATS_SBNOSPACE].rxpackets += 1; in sb_update_no_space_stats()
862 sb->sb_so->so_tc_stats[SO_STATS_SBNOSPACE].rxbytes += space; in sb_update_no_space_stats()
864 sb->sb_so->so_tc_stats[SO_STATS_SBNOSPACE].txpackets += 1; in sb_update_no_space_stats()
865 sb->sb_so->so_tc_stats[SO_STATS_SBNOSPACE].txbytes += space; in sb_update_no_space_stats()
/xnu-12377.41.6/bsd/sys/
H A Dsocketvar.h321 struct data_stats so_tc_stats[SO_TC_STATS_MAX]; member