Home
last modified time | relevance | path

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

/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
H A Deap_methods.c16 #include "eap_methods.h"
19 static struct eap_method *eap_methods = NULL; variable
33 for (m = eap_methods; m; m = m->next) { in eap_peer_get_eap_method()
53 for (m = eap_methods; m; m = m->next) { in eap_peer_get_type()
78 for (m = eap_methods; m; m = m->next) { in eap_get_name()
105 for (m = eap_methods; m; m = m->next) { in eap_get_names()
107 m == eap_methods ? "" : " ", m->name); in eap_get_names()
135 for (m = eap_methods; m; m = m->next) in eap_get_names_as_string_array()
142 for (m = eap_methods; m; m = m->next) { in eap_get_names_as_string_array()
170 for (m = eap_methods; in eap_peer_get_methods()
[all...]
H A DMakefile18 eap_methods.o
H A Deap_config.h413 * eap_methods - Allowed EAP methods
418 struct eap_method_type *eap_methods; member
H A Deap.c146 if (config == NULL || config->eap_methods == NULL) in eap_config_allowed_method()
149 m = config->eap_methods; in eap_config_allowed_method()
1521 struct eap_method_type *m = conf->eap_methods; in eap_sm_imsi_identity()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
H A Deap_methods.c16 #include "eap_methods.h"
19 static struct eap_method *eap_methods = NULL; variable
34 for (m = eap_methods; m; m = m->next) { in eap_peer_get_eap_method()
54 for (m = eap_methods; m; m = m->next) { in eap_peer_get_type()
79 for (m = eap_methods; m; m = m->next) { in eap_get_name()
106 for (m = eap_methods; m; m = m->next) { in eap_get_names()
108 m == eap_methods ? "" : " ", m->name); in eap_get_names()
136 for (m = eap_methods; m; m = m->next) in eap_get_names_as_string_array()
143 for (m = eap_methods; m; m = m->next) { in eap_get_names_as_string_array()
171 for (m = eap_methods; in eap_peer_get_methods()
[all...]
H A DMakefile5 eap_methods.o
H A Deap_config.h427 * eap_methods - Allowed EAP methods
432 struct eap_method_type *eap_methods; member
H A Deap.c147 if (config == NULL || config->eap_methods == NULL) in eap_config_allowed_method()
150 m = config->eap_methods; in eap_config_allowed_method()
1561 struct eap_method_type *m = conf->eap_methods; in eap_sm_imsi_identity()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/
H A Deap_server_methods.c13 #include "eap_methods.h"
16 static struct eap_method *eap_methods; variable
28 for (m = eap_methods; m; m = m->next) { in eap_server_get_eap_method()
48 for (m = eap_methods; m; m = m->next) { in eap_server_get_type()
116 for (m = eap_methods; m; m = m->next) { in eap_server_method_register()
129 eap_methods = method; in eap_server_method_register()
145 while (eap_methods) { in eap_server_unregister_methods()
146 m = eap_methods; in eap_server_unregister_methods()
147 eap_methods = eap_methods in eap_server_unregister_methods()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
H A Deap_server_methods.c13 #include "eap_methods.h"
16 static struct eap_method *eap_methods; variable
29 for (m = eap_methods; m; m = m->next) { in eap_server_get_eap_method()
49 for (m = eap_methods; m; m = m->next) { in eap_server_get_type()
118 for (m = eap_methods; m; m = m->next) { in eap_server_method_register()
132 eap_methods = method; in eap_server_method_register()
148 while (eap_methods) { in eap_server_unregister_methods()
149 m = eap_methods; in eap_server_unregister_methods()
150 eap_methods = eap_methods in eap_server_unregister_methods()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dwpas_glue.c964 const struct eap_method_type *eap_methods; in wpa_sm_sim_state_error_handler() local
970 eap_methods = ssid->eap.eap_methods; in wpa_sm_sim_state_error_handler()
971 if (!eap_methods) in wpa_sm_sim_state_error_handler()
974 for (i = 0; eap_methods[i].method != EAP_TYPE_NONE; i++) { in wpa_sm_sim_state_error_handler()
975 if (eap_methods[i].vendor == EAP_VENDOR_IETF && in wpa_sm_sim_state_error_handler()
976 (eap_methods[i].method == EAP_TYPE_SIM || in wpa_sm_sim_state_error_handler()
977 eap_methods[i].method == EAP_TYPE_AKA || in wpa_sm_sim_state_error_handler()
978 eap_methods[i].method == EAP_TYPE_AKA_PRIME)) { in wpa_sm_sim_state_error_handler()
H A Dconfig.c1527 if (!errors && ssid->eap.eap_methods) { in wpa_config_parse_eap()
1531 prev_m = ssid->eap.eap_methods; in wpa_config_parse_eap()
1555 os_free(ssid->eap.eap_methods); in wpa_config_parse_eap()
1556 ssid->eap.eap_methods = methods; in wpa_config_parse_eap()
1567 const struct eap_method_type *eap_methods = ssid->eap.eap_methods; in wpa_config_write_eap() local
1570 if (eap_methods == NULL) in wpa_config_write_eap()
1578 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF || in wpa_config_write_eap()
1579 eap_methods[i].method != EAP_TYPE_NONE; i++) { in wpa_config_write_eap()
1580 name = eap_get_name(eap_methods[ in wpa_config_write_eap()
[all...]
H A Dinterworking.c21 #include "eap_peer/eap_methods.h"
1439 os_free(ssid->eap.eap_methods); in interworking_set_eap_params()
1440 ssid->eap.eap_methods = in interworking_set_eap_params()
1442 if (ssid->eap.eap_methods == NULL) in interworking_set_eap_params()
1444 os_memcpy(ssid->eap.eap_methods, cred->eap_method, in interworking_set_eap_params()
1446 ssid->eap.eap_methods[1].vendor = EAP_VENDOR_IETF; in interworking_set_eap_params()
1447 ssid->eap.eap_methods[1].method = EAP_TYPE_NONE; in interworking_set_eap_params()
H A Dnmake.mak89 $(OBJDIR)\eap_methods.obj \
H A Dwps_supplicant.c444 os_free(ssid->eap.eap_methods); in wpa_supplicant_wps_cred()
445 ssid->eap.eap_methods = NULL; in wpa_supplicant_wps_cred()
H A Devents.c428 if (ssid == NULL || ssid->eap.eap_methods == NULL) { in wpa_supplicant_scard_init()
432 struct eap_method_type *eap = ssid->eap.eap_methods; in wpa_supplicant_scard_init()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dwpas_glue.c1035 const struct eap_method_type *eap_methods; in wpa_sm_sim_state_error_handler() local
1041 eap_methods = ssid->eap.eap_methods; in wpa_sm_sim_state_error_handler()
1042 if (!eap_methods) in wpa_sm_sim_state_error_handler()
1045 for (i = 0; eap_methods[i].method != EAP_TYPE_NONE; i++) { in wpa_sm_sim_state_error_handler()
1046 if (eap_methods[i].vendor == EAP_VENDOR_IETF && in wpa_sm_sim_state_error_handler()
1047 (eap_methods[i].method == EAP_TYPE_SIM || in wpa_sm_sim_state_error_handler()
1048 eap_methods[i].method == EAP_TYPE_AKA || in wpa_sm_sim_state_error_handler()
1049 eap_methods[i].method == EAP_TYPE_AKA_PRIME)) { in wpa_sm_sim_state_error_handler()
H A Dconfig.c1694 if (!errors && ssid->eap.eap_methods) { in wpa_config_parse_eap()
1698 prev_m = ssid->eap.eap_methods; in wpa_config_parse_eap()
1722 os_free(ssid->eap.eap_methods); in wpa_config_parse_eap()
1723 ssid->eap.eap_methods = methods; in wpa_config_parse_eap()
1734 const struct eap_method_type *eap_methods = ssid->eap.eap_methods; in wpa_config_write_eap() local
1737 if (eap_methods == NULL) in wpa_config_write_eap()
1745 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF || in wpa_config_write_eap()
1746 eap_methods[i].method != EAP_TYPE_NONE; i++) { in wpa_config_write_eap()
1747 name = eap_get_name(eap_methods[ in wpa_config_write_eap()
[all...]
H A Dinterworking.c21 #include "eap_peer/eap_methods.h"
1454 os_free(ssid->eap.eap_methods); in interworking_set_eap_params()
1455 ssid->eap.eap_methods = in interworking_set_eap_params()
1457 if (ssid->eap.eap_methods == NULL) in interworking_set_eap_params()
1459 os_memcpy(ssid->eap.eap_methods, cred->eap_method, in interworking_set_eap_params()
1461 ssid->eap.eap_methods[1].vendor = EAP_VENDOR_IETF; in interworking_set_eap_params()
1462 ssid->eap.eap_methods[1].method = EAP_TYPE_NONE; in interworking_set_eap_params()
H A Dnmake.mak89 $(OBJDIR)\eap_methods.obj \
H A Dwps_supplicant.c455 os_free(ssid->eap.eap_methods); in wpa_supplicant_wps_cred()
456 ssid->eap.eap_methods = NULL; in wpa_supplicant_wps_cred()
H A Devents.c499 if (ssid == NULL || ssid->eap.eap_methods == NULL) { in wpa_supplicant_scard_init()
503 struct eap_method_type *eap = ssid->eap.eap_methods; in wpa_supplicant_scard_init()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/dbus/
H A Ddbus_new_handlers.c15 #include "eap_peer/eap_methods.h"
950 char **eap_methods; in wpas_dbus_getter_eap_methods() local
954 eap_methods = eap_get_names_as_string_array(&num_items); in wpas_dbus_getter_eap_methods()
955 if (!eap_methods) { in wpas_dbus_getter_eap_methods()
962 eap_methods, in wpas_dbus_getter_eap_methods()
966 os_free(eap_methods[--num_items]); in wpas_dbus_getter_eap_methods()
967 os_free(eap_methods); in wpas_dbus_getter_eap_methods()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/dbus/
H A Ddbus_new_handlers.c15 #include "eap_peer/eap_methods.h"
1087 char **eap_methods; in wpas_dbus_getter_eap_methods() local
1091 eap_methods = eap_get_names_as_string_array(&num_items); in wpas_dbus_getter_eap_methods()
1092 if (!eap_methods) { in wpas_dbus_getter_eap_methods()
1099 eap_methods, in wpas_dbus_getter_eap_methods()
1103 os_free(eap_methods[--num_items]); in wpas_dbus_getter_eap_methods()
1104 os_free(eap_methods); in wpas_dbus_getter_eap_methods()

Completed in 62 milliseconds