/Zephyr-latest/subsys/net/l2/ethernet/ |
D | eth_stats.h | 24 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 …]
|
D | ethernet_stats.c | 34 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/ |
D | ppp_stats.h | 23 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 …]
|
D | ppp_stats.c | 34 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/ |
D | eth_test.c | 112 .get_stats = vnd_ethernet_get_stats,
|
D | eth_smsc911x.c | 423 static struct net_stats_eth *get_stats(const struct device *dev) in get_stats() function 515 .get_stats = get_stats,
|
D | eth_native_posix.c | 403 static struct net_stats_eth *get_stats(const struct device *dev) in get_stats() function 472 .get_stats = get_stats,
|
D | eth_stellaris.c | 362 .get_stats = eth_stellaris_stats,
|
D | eth_ivshmem.c | 382 .get_stats = eth_ivshmem_get_stats,
|
D | eth_xmc4xxx.c | 972 .get_stats = eth_xmc4xxx_stats,
|
D | eth_xlnx_gem.c | 77 .get_stats = eth_xlnx_gem_stats,
|
D | eth_stm32_hal.c | 1286 .get_stats = eth_stm32_hal_get_stats,
|
D | eth_adin2111.c | 1514 .get_stats = adin2111_port_get_stats,
|
/Zephyr-latest/include/zephyr/net/ |
D | ppp.h | 67 struct net_stats_ppp *(*get_stats)(const struct device *dev); member
|
D | ethernet.h | 546 struct net_stats_eth *(*get_stats)(const struct device *dev); member
|
D | wifi_mgmt.h | 1375 int (*get_stats)(const struct device *dev, struct net_stats_wifi *stats); member
|
/Zephyr-latest/drivers/wifi/nrf_wifi/src/ |
D | fmac_main.c | 826 .get_stats = nrf_wifi_stats_get, 898 .wifi_iface.get_stats = nrf_wifi_eth_stats_get,
|
/Zephyr-latest/subsys/modem/ |
D | modem_ppp.c | 523 .get_stats = modem_ppp_ppp_get_stats,
|
/Zephyr-latest/subsys/net/l2/wifi/ |
D | wifi_mgmt.c | 748 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/ |
D | airoc_wifi.c | 817 .get_stats = airoc_mgmt_wifi_stats,
|
/Zephyr-latest/drivers/wifi/nxp/ |
D | nxp_wifi_drv.c | 1865 .get_stats = nxp_wifi_stats, 1946 .get_stats = nxp_wifi_stats,
|
/Zephyr-latest/drivers/wifi/esp32/src/ |
D | esp_wifi_drv.c | 928 .get_stats = esp32_wifi_stats,
|
/Zephyr-latest/drivers/net/ |
D | ppp.c | 1150 .get_stats = ppp_get_stats,
|
/Zephyr-latest/modules/hostap/src/ |
D | supp_main.c | 62 .get_stats = supplicant_get_stats,
|
D | supp_api.c | 1667 if (!wifi_mgmt_api || !wifi_mgmt_api->get_stats) { 1672 return wifi_mgmt_api->get_stats(dev, stats);
|