Home
last modified time | relevance | path

Searched refs:intrfc_handle (Results 1 – 3 of 3) sorted by relevance

/hal_nxp-latest/mcux/middleware/wifi_nxp/incl/port/net/zephyr/
Dwm_net.h452 void net_interface_up(void *intrfc_handle);
463 void net_interface_down(void *intrfc_handle);
474 void net_interface_dhcp_stop(void *intrfc_handle);
484 void net_interface_dhcp_cleanup(void *intrfc_handle);
493 int net_configure_address(struct net_ip_config *addr, void *intrfc_handle);
514 int net_get_if_addr(struct net_ip_config *addr, void *intrfc_handle);
527 int net_get_if_ipv6_addr(struct net_ip_config *addr, void *intrfc_handle);
541 int net_get_if_ipv6_pref_addr(struct net_ip_config *addr, void *intrfc_handle);
588 int net_get_if_name(char *if_name, void *intrfc_handle);
601 int net_get_if_ip_addr(uint32_t *ip, void *intrfc_handle);
[all …]
/hal_nxp-latest/mcux/middleware/wifi_nxp/port/net/zephyr/
Dnet.c1004 void net_interface_up(void *intrfc_handle) in net_interface_up() argument
1024 net_if_dormant_off(((interface_t *)intrfc_handle)->netif); in net_interface_up()
1027 void net_interface_down(void *intrfc_handle) in net_interface_down() argument
1032 net_if_dormant_on(((interface_t *)intrfc_handle)->netif); in net_interface_down()
1035 void net_interface_dhcp_stop(void *intrfc_handle) in net_interface_dhcp_stop() argument
1037 net_dhcpv4_stop(((interface_t *)intrfc_handle)->netif); in net_interface_dhcp_stop()
1112 int net_configure_address(struct net_ip_config *addr, void *intrfc_handle) in net_configure_address() argument
1118 if (intrfc_handle == NULL) in net_configure_address()
1123 interface_t *if_handle = (interface_t *)intrfc_handle; in net_configure_address()
1198 int net_get_if_addr(struct net_ip_config *addr, void *intrfc_handle) in net_get_if_addr() argument
[all …]
/hal_nxp-latest/mcux/middleware/wifi_nxp/wlcmgr/
Dwlan.c10447 void *intrfc_handle = NULL; in wlan_remove_all_networks() local
10456 intrfc_handle = net_get_sta_handle(); in wlan_remove_all_networks()
10457 net_interface_down(intrfc_handle); in wlan_remove_all_networks()
10460 intrfc_handle = net_get_uap_handle(); in wlan_remove_all_networks()
10461 net_interface_down(intrfc_handle); in wlan_remove_all_networks()
10472 void *intrfc_handle = NULL; in wlan_enable_all_networks() local
10474 intrfc_handle = net_get_sta_handle(); in wlan_enable_all_networks()
10475 net_interface_up(intrfc_handle); in wlan_enable_all_networks()
10478 intrfc_handle = net_get_uap_handle(); in wlan_enable_all_networks()
10479 net_interface_up(intrfc_handle); in wlan_enable_all_networks()