Home
last modified time | relevance | path

Searched refs:get_stats (Results 1 – 25 of 26) sorted by relevance

12

/Zephyr-latest/subsys/net/l2/ethernet/
Deth_stats.h24 if (!api->get_stats) { in eth_stats_update_bytes_rx()
28 stats = api->get_stats(net_if_get_device(iface)); in eth_stats_update_bytes_rx()
43 if (!api->get_stats) { in eth_stats_update_bytes_tx()
47 stats = api->get_stats(net_if_get_device(iface)); in eth_stats_update_bytes_tx()
61 if (!api->get_stats) { in eth_stats_update_pkts_rx()
65 stats = api->get_stats(net_if_get_device(iface)); in eth_stats_update_pkts_rx()
79 if (!api->get_stats) { in eth_stats_update_pkts_tx()
83 stats = api->get_stats(net_if_get_device(iface)); in eth_stats_update_pkts_tx()
97 if (!api->get_stats) { in eth_stats_update_broadcast_rx()
101 stats = api->get_stats(net_if_get_device(iface)); in eth_stats_update_broadcast_rx()
[all …]
Dethernet_stats.c34 if (eth == NULL || eth->get_stats == NULL) { in eth_stats_get()
39 src = eth->get_stats(net_if_get_device(iface)); in eth_stats_get()
/Zephyr-latest/subsys/net/l2/ppp/
Dppp_stats.h23 if (!api->get_stats) { in ppp_stats_update_bytes_rx()
27 stats = api->get_stats(net_if_get_device(iface)); in ppp_stats_update_bytes_rx()
42 if (!api->get_stats) { in ppp_stats_update_bytes_tx()
46 stats = api->get_stats(net_if_get_device(iface)); in ppp_stats_update_bytes_tx()
60 if (!api->get_stats) { in ppp_stats_update_pkts_rx()
64 stats = api->get_stats(net_if_get_device(iface)); in ppp_stats_update_pkts_rx()
78 if (!api->get_stats) { in ppp_stats_update_pkts_tx()
82 stats = api->get_stats(net_if_get_device(iface)); in ppp_stats_update_pkts_tx()
96 if (!api->get_stats) { in ppp_stats_update_drop_rx()
100 stats = api->get_stats(net_if_get_device(iface)); in ppp_stats_update_drop_rx()
[all …]
Dppp_stats.c34 if (ppp->get_stats == NULL) { in ppp_stats_get()
39 src = ppp->get_stats(net_if_get_device(iface)); in ppp_stats_get()
/Zephyr-latest/drivers/ethernet/
Deth_test.c112 .get_stats = vnd_ethernet_get_stats,
Deth_smsc911x.c423 static struct net_stats_eth *get_stats(const struct device *dev) in get_stats() function
515 .get_stats = get_stats,
Deth_native_posix.c403 static struct net_stats_eth *get_stats(const struct device *dev) in get_stats() function
472 .get_stats = get_stats,
Deth_stellaris.c362 .get_stats = eth_stellaris_stats,
Deth_ivshmem.c382 .get_stats = eth_ivshmem_get_stats,
Deth_xmc4xxx.c972 .get_stats = eth_xmc4xxx_stats,
Deth_xlnx_gem.c77 .get_stats = eth_xlnx_gem_stats,
Deth_stm32_hal.c1286 .get_stats = eth_stm32_hal_get_stats,
Deth_adin2111.c1514 .get_stats = adin2111_port_get_stats,
/Zephyr-latest/include/zephyr/net/
Dppp.h67 struct net_stats_ppp *(*get_stats)(const struct device *dev); member
Dethernet.h546 struct net_stats_eth *(*get_stats)(const struct device *dev); member
Dwifi_mgmt.h1375 int (*get_stats)(const struct device *dev, struct net_stats_wifi *stats); member
/Zephyr-latest/drivers/wifi/nrf_wifi/src/
Dfmac_main.c826 .get_stats = nrf_wifi_stats_get,
898 .wifi_iface.get_stats = nrf_wifi_eth_stats_get,
/Zephyr-latest/subsys/modem/
Dmodem_ppp.c523 .get_stats = modem_ppp_ppp_get_stats,
/Zephyr-latest/subsys/net/l2/wifi/
Dwifi_mgmt.c748 if (wifi_mgmt_api == NULL || wifi_mgmt_api->get_stats == NULL) { in wifi_iface_stats()
756 return wifi_mgmt_api->get_stats(dev, stats); in wifi_iface_stats()
/Zephyr-latest/drivers/wifi/infineon/
Dairoc_wifi.c817 .get_stats = airoc_mgmt_wifi_stats,
/Zephyr-latest/drivers/wifi/nxp/
Dnxp_wifi_drv.c1865 .get_stats = nxp_wifi_stats,
1946 .get_stats = nxp_wifi_stats,
/Zephyr-latest/drivers/wifi/esp32/src/
Desp_wifi_drv.c928 .get_stats = esp32_wifi_stats,
/Zephyr-latest/drivers/net/
Dppp.c1150 .get_stats = ppp_get_stats,
/Zephyr-latest/modules/hostap/src/
Dsupp_main.c62 .get_stats = supplicant_get_stats,
Dsupp_api.c1667 if (!wifi_mgmt_api || !wifi_mgmt_api->get_stats) {
1672 return wifi_mgmt_api->get_stats(dev, stats);

12