OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:eap_methods
(Results
1 - 12
of
12
) sorted by null
/external/wpa_supplicant_8/src/eap_server/
eap_server_methods.c
13
#include "
eap_methods
.h"
16
static struct eap_method *
eap_methods
;
variable in typeref:struct:eap_method
28
for (m =
eap_methods
; m; m = m->next) {
48
for (m =
eap_methods
; m; m = m->next) {
113
for (m =
eap_methods
; m; m = m->next) {
124
eap_methods
= method;
140
while (
eap_methods
) {
141
m =
eap_methods
;
142
eap_methods
=
eap_methods
->next
[
all
...]
/external/wpa_supplicant_8/src/eap_peer/
eap_methods.c
16
#include "
eap_methods
.h"
19
static struct eap_method *
eap_methods
= NULL;
variable in typeref:struct:eap_method
31
for (m =
eap_methods
; m; m = m->next) {
51
for (m =
eap_methods
; m; m = m->next) {
76
for (m =
eap_methods
; m; m = m->next) {
103
for (m =
eap_methods
; m; m = m->next) {
105
m ==
eap_methods
? "" : " ", m->name);
133
for (m =
eap_methods
; m; m = m->next)
140
for (m =
eap_methods
; m; m = m->next) {
168
for (m =
eap_methods
; m; m = m->next
[
all
...]
eap_config.h
306
*
eap_methods
- Allowed EAP methods
311
struct eap_method_type *
eap_methods
;
member in struct:eap_peer_config
eap.c
124
if (config == NULL || config->
eap_methods
== NULL)
127
m = config->
eap_methods
;
998
struct eap_method_type *m = conf->
eap_methods
;
[
all
...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old_handlers.c
13
#include "eap_peer/
eap_methods
.h"
499
char **
eap_methods
;
local
516
eap_methods
= eap_get_names_as_string_array(&num_items);
517
if (
eap_methods
) {
522
&iter_dict, "eap", (const char **)
eap_methods
,
526
while (
eap_methods
[i])
527
os_free(
eap_methods
[i++]);
528
os_free(
eap_methods
);
[
all
...]
dbus_new_handlers.c
15
#include "eap_peer/
eap_methods
.h"
904
char **
eap_methods
;
local
908
eap_methods
= eap_get_names_as_string_array(&num_items);
909
if (!
eap_methods
) {
916
eap_methods
,
920
os_free(
eap_methods
[--num_items]);
921
os_free(
eap_methods
);
[
all
...]
/external/wpa_supplicant_8/wpa_supplicant/
config.c
1016
os_free(ssid->eap.
eap_methods
);
1017
ssid->eap.
eap_methods
= methods;
1027
const struct eap_method_type *
eap_methods
= ssid->eap.
eap_methods
;
local
1030
if (
eap_methods
== NULL)
1038
for (i = 0;
eap_methods
[i].vendor != EAP_VENDOR_IETF ||
1039
eap_methods
[i].method != EAP_TYPE_NONE; i++) {
1040
name = eap_get_name(
eap_methods
[i].vendor,
1041
eap_methods
[i].method);
[
all
...]
interworking.c
20
#include "eap_peer/
eap_methods
.h"
1011
os_free(ssid->eap.
eap_methods
);
1012
ssid->eap.
eap_methods
=
1014
if (ssid->eap.
eap_methods
== NULL)
1016
os_memcpy(ssid->eap.
eap_methods
, cred->eap_method,
1018
ssid->eap.
eap_methods
[1].vendor = EAP_VENDOR_IETF;
1019
ssid->eap.
eap_methods
[1].method = EAP_TYPE_NONE;
[
all
...]
nmake.mak
89
$(OBJDIR)\
eap_methods
.obj \
events.c
284
if (ssid->eap.
eap_methods
== NULL) {
288
struct eap_method_type *eap = ssid->eap.
eap_methods
;
[
all
...]
wps_supplicant.c
380
os_free(ssid->eap.
eap_methods
);
381
ssid->eap.
eap_methods
= NULL;
[
all
...]
Makefile
717
OBJS += ../src/eap_peer/eap.o ../src/eap_peer/
eap_methods
.o
[
all
...]
Completed in 137 milliseconds