OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hapd_iface
(Results
1 - 4
of
4
) sorted by null
/external/wpa_supplicant_8/hostapd/
main.c
178
struct hostapd_iface *
hapd_iface
= NULL;
local
183
hapd_iface
= os_zalloc(sizeof(*
hapd_iface
));
184
if (
hapd_iface
== NULL)
187
hapd_iface
->reload_config = hostapd_reload_config;
188
hapd_iface
->config_read_cb = hostapd_config_read;
189
hapd_iface
->config_fname = os_strdup(config_file);
190
if (
hapd_iface
->config_fname == NULL)
192
hapd_iface
->ctrl_iface_init = hostapd_ctrl_iface_init;
193
hapd_iface
->ctrl_iface_deinit = hostapd_ctrl_iface_deinit
[
all
...]
/external/wpa_supplicant_8/wpa_supplicant/
ap.c
342
struct hostapd_iface *
hapd_iface
;
local
411
wpa_s->ap_iface =
hapd_iface
= os_zalloc(sizeof(*wpa_s->ap_iface));
412
if (
hapd_iface
== NULL)
414
hapd_iface
->owner = wpa_s;
436
hapd_iface
->num_bss = conf->num_bss;
437
hapd_iface
->bss = os_zalloc(conf->num_bss *
439
if (
hapd_iface
->bss == NULL) {
445
hapd_iface
->bss[i] =
446
hostapd_alloc_bss_data(
hapd_iface
, conf,
448
if (
hapd_iface
->bss[i] == NULL)
[
all
...]
/external/wpa_supplicant_8/src/ap/
hostapd.h
241
hostapd_alloc_bss_data(struct hostapd_iface *
hapd_iface
,
hostapd.c
843
* @
hapd_iface
: Pointer to interface data
853
hostapd_alloc_bss_data(struct hostapd_iface *
hapd_iface
,
866
hapd->iface =
hapd_iface
;
Completed in 5956 milliseconds