Searched refs:eap_methods (Results 1 - 20 of 20) sorted by relevance

/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_methods.c13 #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
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_methods.c13 #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
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_methods.c13 #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
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_methods.c16 #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;
[all...]
H A Deap_config.h332 * eap_methods - Allowed EAP methods
337 struct eap_method_type *eap_methods; member in struct:eap_peer_config
H A Deap.c133 if (config == NULL || config->eap_methods == NULL)
136 m = config->eap_methods;
1023 struct eap_method_type *m = conf->eap_methods;
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_methods.c16 #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;
[all...]
H A Deap_config.h332 * eap_methods - Allowed EAP methods
337 struct eap_method_type *eap_methods; member in struct:eap_peer_config
H A Deap.c133 if (config == NULL || config->eap_methods == NULL)
136 m = config->eap_methods;
1023 struct eap_method_type *m = conf->eap_methods;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_methods.c16 #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;
[all...]
H A Deap_config.h332 * eap_methods - Allowed EAP methods
337 struct eap_method_type *eap_methods; member in struct:eap_peer_config
H A Deap.c133 if (config == NULL || config->eap_methods == NULL)
136 m = config->eap_methods;
1023 struct eap_method_type *m = conf->eap_methods;
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_old_handlers.c13 #include "eap_peer/eap_methods.h"
508 char **eap_methods; local
525 eap_methods = eap_get_names_as_string_array(&num_items);
526 if (eap_methods) {
531 &iter_dict, "eap", (const char **) eap_methods,
535 while (eap_methods[i])
536 os_free(eap_methods[i++]);
537 os_free(eap_methods);
H A Ddbus_new_handlers.c15 #include "eap_peer/eap_methods.h"
931 char **eap_methods; local
935 eap_methods = eap_get_names_as_string_array(&num_items);
936 if (!eap_methods) {
943 eap_methods,
947 os_free(eap_methods[--num_items]);
948 os_free(eap_methods);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig.c1084 os_free(ssid->eap.eap_methods);
1085 ssid->eap.eap_methods = methods;
1095 const struct eap_method_type *eap_methods = ssid->eap.eap_methods; local
1098 if (eap_methods == NULL)
1106 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF ||
1107 eap_methods[i].method != EAP_TYPE_NONE; i++) {
1108 name = eap_get_name(eap_methods[i].vendor,
1109 eap_methods[i].method);
1865 os_free(eap->eap_methods);
[all...]
H A Dinterworking.c21 #include "eap_peer/eap_methods.h"
1346 os_free(ssid->eap.eap_methods);
1347 ssid->eap.eap_methods =
1349 if (ssid->eap.eap_methods == NULL)
1351 os_memcpy(ssid->eap.eap_methods, cred->eap_method,
1353 ssid->eap.eap_methods[1].vendor = EAP_VENDOR_IETF;
1354 ssid->eap.eap_methods[1].method = EAP_TYPE_NONE;
H A Dnmake.mak89 $(OBJDIR)\eap_methods.obj \
H A Devents.c318 if (ssid == NULL || ssid->eap.eap_methods == NULL) {
322 struct eap_method_type *eap = ssid->eap.eap_methods;
H A Dwps_supplicant.c384 os_free(ssid->eap.eap_methods);
385 ssid->eap.eap_methods = NULL;
H A DMakefile738 OBJS += ../src/eap_peer/eap.o ../src/eap_peer/eap_methods.o

Completed in 203 milliseconds