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/src/ap/
hostapd.c
1070
* @
hapd_iface
: Pointer to interface data
1080
hostapd_alloc_bss_data(struct hostapd_iface *
hapd_iface
,
1093
hapd->iface =
hapd_iface
;
1145
int hostapd_enable_iface(struct hostapd_iface *
hapd_iface
)
1147
if (
hapd_iface
->bss[0]->drv_priv != NULL) {
1149
hapd_iface
->conf->bss[0].iface);
1154
hapd_iface
->conf->bss[0].iface);
1156
if (
hapd_iface
->interfaces == NULL ||
1157
hapd_iface
->interfaces->driver_init == NULL ||
1158
hapd_iface
->interfaces->driver_init(hapd_iface) |
1232
struct hostapd_iface **iface, *
hapd_iface
;
local
1296
struct hostapd_iface *
hapd_iface
=
local
1326
struct hostapd_iface *
hapd_iface
= NULL;
local
1389
struct hostapd_iface *
hapd_iface
;
local
[
all
...]
hostapd.h
341
hostapd_alloc_bss_data(struct hostapd_iface *
hapd_iface
,
351
int hostapd_enable_iface(struct hostapd_iface *
hapd_iface
);
352
int hostapd_reload_iface(struct hostapd_iface *
hapd_iface
);
353
int hostapd_disable_iface(struct hostapd_iface *
hapd_iface
);
/external/wpa_supplicant_8/hostapd/
main.c
161
struct hostapd_iface *
hapd_iface
= NULL;
local
166
hapd_iface
= os_zalloc(sizeof(*
hapd_iface
));
167
if (
hapd_iface
== NULL)
170
hapd_iface
->config_fname = os_strdup(config_file);
171
if (
hapd_iface
->config_fname == NULL)
174
conf = hostapd_config_read(
hapd_iface
->config_fname);
177
hapd_iface
->conf = conf;
179
hapd_iface
->num_bss = conf->num_bss;
180
hapd_iface
->bss = os_calloc(conf->num_bss
[
all
...]
/external/wpa_supplicant_8/wpa_supplicant/
ap.c
443
struct hostapd_iface *
hapd_iface
;
local
511
wpa_s->ap_iface =
hapd_iface
= os_zalloc(sizeof(*wpa_s->ap_iface));
512
if (
hapd_iface
== NULL)
514
hapd_iface
->owner = wpa_s;
515
hapd_iface
->drv_flags = wpa_s->drv_flags;
516
hapd_iface
->probe_resp_offloads = wpa_s->probe_resp_offloads;
517
hapd_iface
->extended_capa = wpa_s->extended_capa;
518
hapd_iface
->extended_capa_mask = wpa_s->extended_capa_mask;
519
hapd_iface
->extended_capa_len = wpa_s->extended_capa_len;
550
hapd_iface
->num_bss = conf->num_bss
[
all
...]
Completed in 3060 milliseconds