Home
last modified time | relevance | path

Searched refs:net_if_offload (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/include/zephyr/net/
Dnet_offload.h151 NET_ASSERT(net_if_offload(iface)); in net_offload_get()
152 NET_ASSERT(net_if_offload(iface)->get); in net_offload_get()
154 return net_if_offload(iface)->get(family, type, ip_proto, context); in net_offload_get()
176 NET_ASSERT(net_if_offload(iface)); in net_offload_bind()
177 NET_ASSERT(net_if_offload(iface)->bind); in net_offload_bind()
179 return net_if_offload(iface)->bind(context, addr, addrlen); in net_offload_bind()
199 NET_ASSERT(net_if_offload(iface)); in net_offload_listen()
200 NET_ASSERT(net_if_offload(iface)->listen); in net_offload_listen()
202 return net_if_offload(iface)->listen(context, backlog); in net_offload_listen()
243 NET_ASSERT(net_if_offload(iface)); in net_offload_connect()
[all …]
Dnet_if.h1016 static inline struct net_offload *net_if_offload(struct net_if *iface) in net_if_offload() function
/Zephyr-latest/subsys/net/conn_mgr/
Dconn_mgr_monitor.c365 return (!l2 && net_if_offload(iface)) || in iface_uses_l2()
/Zephyr-latest/subsys/net/ip/
Dnet_if.c648 !l2 && net_if_offload(iface)) { in net_if_get_first_by_type()