Lines Matching refs:bytes
52 uint32_t bytes) in net_stats_update_bytes_recv() argument
54 UPDATE_STAT(iface, stats.bytes.received += bytes); in net_stats_update_bytes_recv()
58 uint32_t bytes) in net_stats_update_bytes_sent() argument
60 UPDATE_STAT(iface, stats.bytes.sent += bytes); in net_stats_update_bytes_sent()
66 #define net_stats_update_bytes_recv(iface, bytes) argument
67 #define net_stats_update_bytes_sent(iface, bytes) argument
237 static inline void net_stats_update_tcp_sent(struct net_if *iface, uint32_t bytes) in net_stats_update_tcp_sent() argument
239 UPDATE_STAT(iface, stats.tcp.bytes.sent += bytes); in net_stats_update_tcp_sent()
242 static inline void net_stats_update_tcp_recv(struct net_if *iface, uint32_t bytes) in net_stats_update_tcp_recv() argument
244 UPDATE_STAT(iface, stats.tcp.bytes.received += bytes); in net_stats_update_tcp_recv()
248 uint32_t bytes) in net_stats_update_tcp_resent() argument
250 UPDATE_STAT(iface, stats.tcp.resent += bytes); in net_stats_update_tcp_resent()
308 #define net_stats_update_tcp_sent(iface, bytes) argument
309 #define net_stats_update_tcp_resent(iface, bytes) argument
310 #define net_stats_update_tcp_recv(iface, bytes) argument
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()
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()
602 #define net_stats_update_tc_sent_bytes(iface, tc, bytes) argument
605 #define net_stats_update_tc_recv_bytes(iface, tc, bytes) argument