Home
last modified time | relevance | path

Searched refs:net_stats (Results 1 – 11 of 11) sorted by relevance

/Zephyr-Core-3.5.0/subsys/net/ip/
Dnet_stats.c14 LOG_MODULE_REGISTER(net_stats, NET_LOG_LEVEL);
30 struct net_stats net_stats = { 0 }; variable
245 len_chk = sizeof(struct net_stats); in net_stats_get()
247 src = iface ? &iface->stats : &net_stats; in net_stats_get()
249 src = &net_stats; in net_stats_get()
374 memset(&net_stats, 0, sizeof(net_stats)); in net_stats_reset()
Dnet_stats.h18 extern struct net_stats net_stats;
22 #define GET_STAT(iface, s) (iface ? iface->stats.s : net_stats.s)
23 #define GET_STAT_ADDR(iface, s) (iface ? &iface->stats.s : &net_stats.s)
26 #define GET_STAT(iface, s) (net_stats.s)
DCMakeLists.txt45 zephyr_library_sources_ifdef(CONFIG_NET_STATISTICS net_stats.c)
/Zephyr-Core-3.5.0/doc/connectivity/networking/api/
Dapis.rst13 net_stats.rst
Dnet_stats.rst38 .. doxygengroup:: net_stats
/Zephyr-Core-3.5.0/samples/net/stats/src/
Dmain.c25 static void print_stats(struct net_if *iface, struct net_stats *data) in print_stats()
117 struct net_stats *data = user_data; in iface_cb()
162 struct net_stats data; in stats()
/Zephyr-Core-3.5.0/samples/net/wifi/
DREADME.rst3 :relevant-api: net_stats
/Zephyr-Core-3.5.0/samples/net/stats/
DREADME.rst3 :relevant-api: net_stats
/Zephyr-Core-3.5.0/include/zephyr/net/
Dnet_stats.h292 struct net_stats { struct
Dnet_if.h601 struct net_stats stats;
/Zephyr-Core-3.5.0/tests/net/socket/tcp/src/
Dmain.c491 struct net_stats before; in ZTEST()
492 struct net_stats after; in ZTEST()