Home
last modified time | relevance | path

Searched refs:SO_STATS_DATA (Results 1 – 3 of 3) sorted by relevance

/xnu-12377.41.6/bsd/netinet/
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()
/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()
/xnu-12377.41.6/bsd/sys/
H A Dsocketvar.h113 #define SO_STATS_DATA 0 macro