Home
last modified time | relevance | path

Searched refs:ifaces (Results 1 – 12 of 12) sorted by relevance

/Zephyr-latest/samples/net/dsa/src/
Dmain.c16 struct ud *ifaces = user_data; in iface_cb() local
23 if (ifaces->master == NULL) { in iface_cb()
24 ifaces->master = iface; in iface_cb()
27 for (int i = 0; i < ARRAY_SIZE(ifaces->lan); i++) { in iface_cb()
35 ifaces->lan[i] = slave; in iface_cb()
/Zephyr-latest/subsys/net/ip/
Droute.c734 ARRAY_FOR_EACH(entry->ifaces, i) { in mcast_route_iface_lookup()
735 if (entry->ifaces[i] == iface) { in mcast_route_iface_lookup()
754 ARRAY_FOR_EACH(entry->ifaces, i) { in net_route_mcast_iface_add()
755 if (entry->ifaces[i] == NULL) { in net_route_mcast_iface_add()
756 entry->ifaces[i] = iface; in net_route_mcast_iface_add()
775 entry->ifaces[pos] = NULL; in net_route_mcast_iface_del()
836 ARRAY_FOR_EACH(route->ifaces, i) { in net_route_mcast_forward_packet()
837 if (!route->ifaces[i] || pkt->iface == route->ifaces[i] || in net_route_mcast_forward_packet()
838 !net_if_flag_is_set(route->ifaces[i], NET_IF_FORWARD_MULTICASTS)) { in net_route_mcast_forward_packet()
851 net_pkt_set_iface(pkt_cpy, route->ifaces[i]); in net_route_mcast_forward_packet()
[all …]
Droute.h192 struct net_if *ifaces[CONFIG_NET_MCAST_ROUTE_MAX_IFACES]; member
/Zephyr-latest/subsys/net/lib/shell/
Droute.c105 if (entry->ifaces[i]) { in route_mcast_cb()
106 PR("Interface : %d (%p) %s\n", net_if_get_by_iface(entry->ifaces[i]), in route_mcast_cb()
107 entry->ifaces[i], iface2str(entry->ifaces[i], NULL)); in route_mcast_cb()
/Zephyr-latest/subsys/usb/device/class/audio/
Dusb_audio_internal.h313 #define DECLARE_HEADER(dev, i, ifaces) \ argument
321 uint8_t baInterfaceNr[ifaces]; \
351 #define DECLARE_DESCRIPTOR(dev, i, ifaces) \ argument
352 DECLARE_HEADER(dev, i, ifaces); \
369 #define DECLARE_DESCRIPTOR_BIDIR(dev, i, ifaces) \ argument
370 DECLARE_HEADER(dev, i, ifaces); \
410 #define INIT_CS_AC_IF(dev, i, ifaces) \ argument
421 .bInCollection = ifaces, \
425 #define INIT_CS_AC_IF_BIDIR(dev, i, ifaces) \ argument
437 .bInCollection = ifaces, \
/Zephyr-latest/doc/connectivity/networking/conn_mgr/
Dmain.rst19 …r_monitoring.h`) monitors all available :ref:`Zephyr network interfaces (ifaces) <net_if_interface…
38 Connectivity monitoring tracks all available ifaces (whether or not they support :ref:`Connectivity…
59 * Ignored ifaces are always treated as unready.
72 Afterwards, ifaces can become ready or unready without firing additional events, so long as there a…
74 When there are no longer any ready ifaces left, the :c:macro:`NET_EVENT_L4_DISCONNECTED` :ref:`netw…
85 …NET_EVENT_L4_DISCONNECTED`, but specifically track whether IPv4- and IPv6-capable ifaces are ready.
178 Ignoring ifaces
181 Applications can request that ifaces be ignored by Connection Manager by calling :c:func:`conn_mgr_…
185 This has the effect of individually ignoring all the ifaces using that :ref:`L2 implementation <net…
189 This may be useful, for instance, if your application has configured one or more ifaces that cannot…
[all …]
Dimplementation.rst11 Connectivity implementations are technology-specific modules that allow specific Zephyr ifaces to s…
41 A single connectivity implementation may be bound to multiple ifaces.
59 Since a single connectivity implementation may be shared by several Zephyr ifaces, each binding ins…
260 Zephyr ifaces may be accessed from other threads without respecting the binding mutex.
326 *Access ifaces only through binding structs*
329 Do not use statically declared ifaces or externally acquire references to ifaces.
352 …ivity implementation to all of your ifaces, and use the context pointer to store state relevant to…
/Zephyr-latest/subsys/net/conn_mgr/
DKconfig39 bool "Automatically call net_if_down on ifaces that have given up on connecting"
/Zephyr-latest/doc/connectivity/networking/conn_mgr/figures/
Dintegration_diagram_detailed.drawio19 …&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Zephyr ifaces (bound)&lt;/div&gt…
31 …<mxCell id="Db8zi3n4dXzB52SZQf6J-26" value="&lt;div&gt;Zephyr ifaces (unbound)&lt;/div&gt;&lt;div&…
86 …<mxCell id="Db8zi3n4dXzB52SZQf6J-56" value="&lt;div&gt;Zephyr&lt;/div&gt;&lt;div&gt;ifaces&lt;br&g…
Dintegration_diagram_simplified.drawio68 …<mxCell id="Db8zi3n4dXzB52SZQf6J-144" value="&lt;div&gt;Zephyr ifaces&lt;/div&gt;" style="rounded=…
/Zephyr-latest/drivers/ethernet/
Deth_adin2111.c1545 #define ADIN2111_MAC_INITIALIZE(inst, dev_id, ifaces, name) \ argument
1559 .ifaces_left_to_init = ifaces, \
/Zephyr-latest/modules/hostap/src/
Dsupp_main.c290 for (wpa_s = ctx->supplicant->ifaces; wpa_s; wpa_s = wpa_s->next) { in get_iface_count()