Lines Matching full:tc

483 static inline void net_stats_update_tc_sent_pkt(struct net_if *iface, uint8_t tc)  in net_stats_update_tc_sent_pkt()  argument
485 UPDATE_STAT(iface, stats.tc.sent[tc].pkts++); in net_stats_update_tc_sent_pkt()
489 uint8_t tc, size_t bytes) in net_stats_update_tc_sent_bytes() argument
491 UPDATE_STAT(iface, stats.tc.sent[tc].bytes += bytes); in net_stats_update_tc_sent_bytes()
495 uint8_t tc, uint8_t priority) in net_stats_update_tc_sent_priority() argument
497 UPDATE_STAT(iface, stats.tc.sent[tc].priority = priority); in net_stats_update_tc_sent_priority()
508 int tc = net_tx_priority2tc(priority); in net_stats_update_tc_tx_time() local
510 UPDATE_STAT(iface, stats.tc.sent[tc].tx_time.sum += in net_stats_update_tc_tx_time()
512 UPDATE_STAT(iface, stats.tc.sent[tc].tx_time.count += 1); in net_stats_update_tc_tx_time()
517 #define net_stats_update_tc_tx_time(iface, tc, start_time, end_time) argument
525 int tc = net_tx_priority2tc(priority); in net_stats_update_tc_tx_time_detail() local
530 stats.tc.sent[tc].tx_time_detail[i].sum += in net_stats_update_tc_tx_time_detail()
533 stats.tc.sent[tc].tx_time_detail[i].count += 1); in net_stats_update_tc_tx_time_detail()
539 #define net_stats_update_tc_tx_time_detail(iface, tc, detail_stat) argument
550 int tc = net_rx_priority2tc(priority); in net_stats_update_tc_rx_time() local
552 UPDATE_STAT(iface, stats.tc.recv[tc].rx_time.sum += in net_stats_update_tc_rx_time()
554 UPDATE_STAT(iface, stats.tc.recv[tc].rx_time.count += 1); in net_stats_update_tc_rx_time()
559 #define net_stats_update_tc_rx_time(iface, tc, start_time, end_time) argument
567 int tc = net_rx_priority2tc(priority); in net_stats_update_tc_rx_time_detail() local
572 stats.tc.recv[tc].rx_time_detail[i].sum += in net_stats_update_tc_rx_time_detail()
575 stats.tc.recv[tc].rx_time_detail[i].count += 1); in net_stats_update_tc_rx_time_detail()
581 #define net_stats_update_tc_rx_time_detail(iface, tc, detail_stat) argument
584 static inline void net_stats_update_tc_recv_pkt(struct net_if *iface, uint8_t tc) in net_stats_update_tc_recv_pkt() argument
586 UPDATE_STAT(iface, stats.tc.recv[tc].pkts++); in net_stats_update_tc_recv_pkt()
590 uint8_t tc, size_t bytes) in net_stats_update_tc_recv_bytes() argument
592 UPDATE_STAT(iface, stats.tc.recv[tc].bytes += bytes); in net_stats_update_tc_recv_bytes()
596 uint8_t tc, uint8_t priority) in net_stats_update_tc_recv_priority() argument
598 UPDATE_STAT(iface, stats.tc.recv[tc].priority = priority); in net_stats_update_tc_recv_priority()
601 #define net_stats_update_tc_sent_pkt(iface, tc) argument
602 #define net_stats_update_tc_sent_bytes(iface, tc, bytes) argument
603 #define net_stats_update_tc_sent_priority(iface, tc, priority) argument
604 #define net_stats_update_tc_recv_pkt(iface, tc) argument
605 #define net_stats_update_tc_recv_bytes(iface, tc, bytes) argument
606 #define net_stats_update_tc_recv_priority(iface, tc, priority) argument