Home
last modified time | relevance | path

Searched refs:net_eth_get_hw_capabilities (Results 1 – 15 of 15) sorted by relevance

/Zephyr-latest/subsys/net/l2/ethernet/dsa/
Ddsa.c40 if (net_eth_get_hw_capabilities(iface) & in dsa_is_port_master()
65 if (!((net_eth_get_hw_capabilities(iface) & ETHERNET_DSA_MASTER_PORT) || in dsa_check_iface()
66 (net_eth_get_hw_capabilities(iface) & ETHERNET_DSA_SLAVE_PORT))) { in dsa_check_iface()
/Zephyr-latest/samples/net/lldp/src/
Dmain.c114 caps = net_eth_get_hw_capabilities(iface); in init_vlan()
208 caps = net_eth_get_hw_capabilities(iface); in init_app()
/Zephyr-latest/subsys/net/l2/ethernet/
Dethernet.c169 return (net_eth_get_hw_capabilities(iface) & ETHERNET_HW_VLAN_TAG_STRIP); in eth_is_vlan_tag_stripped()
208 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_HW_FILTERING)) { in ethernet_mcast_monitor_cb()
976 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_PTP)) { in net_eth_get_ptp_clock()
1038 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_PROMISC_MODE)) { in net_eth_promisc_mode()
1053 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_TXINJECTION_MODE)) { in net_eth_txinjection_mode()
1069 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_HW_FILTERING)) { in net_eth_mac_filter()
1100 if (net_eth_get_hw_capabilities(iface) & ETHERNET_PROMISC_MODE) { in ethernet_init()
1105 if (net_eth_get_hw_capabilities(iface) & ETHERNET_HW_FILTERING) { in ethernet_init()
Dbridge_shell.c62 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_PROMISC_MODE)) { in cmd_bridge_addif()
Dbridge.c98 !(net_eth_get_hw_capabilities(iface) & ETHERNET_PROMISC_MODE)) { in eth_bridge_iface_add()
Dvlan.c398 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_HW_VLAN)) { in net_eth_vlan_enable()
/Zephyr-latest/samples/net/dsa/src/
Dmain.c22 if (net_eth_get_hw_capabilities(iface) & ETHERNET_DSA_MASTER_PORT) { in iface_cb()
/Zephyr-latest/samples/net/sockets/txtime/src/
Dvlan.c112 caps = net_eth_get_hw_capabilities(iface); in init_vlan()
Dmain.c581 caps = net_eth_get_hw_capabilities(iface); in main()
/Zephyr-latest/subsys/net/l2/ethernet/lldp/
Dlldp.c224 if (!(net_eth_get_hw_capabilities(iface) & ETHERNET_LLDP)) { in lldp_check_iface()
/Zephyr-latest/include/zephyr/net/
Dethernet.h940 enum ethernet_hw_caps net_eth_get_hw_capabilities(struct net_if *iface) in net_eth_get_hw_capabilities() function
/Zephyr-latest/subsys/net/lib/shell/
Diface.c68 enum ethernet_hw_caps caps = net_eth_get_hw_capabilities(iface); in print_supported_ethernet_capabilities()
/Zephyr-latest/drivers/ethernet/
Ddsa_ksz8xxx.c924 if (!(net_eth_get_hw_capabilities(iface) & in dsa_ksz8xxx_get_iface()
/Zephyr-latest/subsys/net/ip/
Dnet_if.c5362 if (!(net_eth_get_hw_capabilities(iface) & caps)) { in need_calc_checksum()
/Zephyr-latest/doc/releases/
Drelease-notes-4.0.rst536 * Added check for null api pointer in :c:func:`net_eth_get_hw_capabilities`, fixing netusb crash.