Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching refs:iface

1849 	struct wpa_interface iface;
1858 os_memset(&iface, 0, sizeof(iface));
1861 iface.ifname = pos = cmd;
1865 if (iface.ifname[0] == '\0')
1870 iface.confname = pos;
1874 if (iface.confname[0] == '\0')
1875 iface.confname = NULL;
1879 iface.driver = pos;
1883 if (iface.driver[0] == '\0')
1884 iface.driver = NULL;
1888 iface.ctrl_interface = pos;
1892 if (iface.ctrl_interface[0] == '\0')
1893 iface.ctrl_interface = NULL;
1897 iface.driver_param = pos;
1901 if (iface.driver_param[0] == '\0')
1902 iface.driver_param = NULL;
1906 iface.bridge_ifname = pos;
1910 if (iface.bridge_ifname[0] == '\0')
1911 iface.bridge_ifname = NULL;
1916 if (wpa_supplicant_get_iface(global, iface.ifname))
1919 return wpa_supplicant_add_iface(global, &iface) ? 0 : -1;
1937 static void wpa_free_iface_info(struct wpa_interface_info *iface)
1941 while (iface) {
1942 prev = iface;
1943 iface = iface->next;
1956 struct wpa_interface_info *iface = NULL, *last = NULL, *tmp;
1968 iface = last = tmp;
1977 for (tmp = iface; tmp; tmp = tmp->next) {
1988 wpa_free_iface_info(iface);