/external/wpa_supplicant_8/src/eap_peer/ |
D | eap_methods.c | 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; m; m = m->next) in eap_peer_get_methods() 174 return eap_methods; in eap_peer_get_methods() [all …]
|
D | Makefile | 18 eap_methods.o
|
D | eap_config.h | 367 struct eap_method_type *eap_methods; member
|
D | eap_proxy_qmi_oc.c | 1686 m = config->eap_methods; in eap_proxy_build_identity() 2288 if (config == NULL || config->eap_methods == NULL) in eap_proxy_allowed_method() 2291 m = config->eap_methods; in eap_proxy_allowed_method()
|
D | eap.c | 144 if (config == NULL || config->eap_methods == NULL) in eap_config_allowed_method() 147 m = config->eap_methods; in eap_config_allowed_method() 1513 struct eap_method_type *m = conf->eap_methods; in eap_sm_imsi_identity()
|
/external/wpa_supplicant_8/src/eap_server/ |
D | eap_server_methods.c | 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->next; in eap_server_unregister_methods() 171 for (m = eap_methods; m; m = m->next) { in eap_server_get_name()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | wpas_glue.c | 960 const struct eap_method_type *eap_methods; in wpa_sm_sim_state_error_handler() local 966 eap_methods = ssid->eap.eap_methods; in wpa_sm_sim_state_error_handler() 967 if (!eap_methods) in wpa_sm_sim_state_error_handler() 970 for (i = 0; eap_methods[i].method != EAP_TYPE_NONE; i++) { in wpa_sm_sim_state_error_handler() 971 if (eap_methods[i].vendor == EAP_VENDOR_IETF && in wpa_sm_sim_state_error_handler() 972 (eap_methods[i].method == EAP_TYPE_SIM || in wpa_sm_sim_state_error_handler() 973 eap_methods[i].method == EAP_TYPE_AKA || in wpa_sm_sim_state_error_handler() 974 eap_methods[i].method == EAP_TYPE_AKA_PRIME)) { in wpa_sm_sim_state_error_handler()
|
D | config.c | 1487 if (!errors && ssid->eap.eap_methods) { in wpa_config_parse_eap() 1491 prev_m = ssid->eap.eap_methods; in wpa_config_parse_eap() 1515 os_free(ssid->eap.eap_methods); in wpa_config_parse_eap() 1516 ssid->eap.eap_methods = methods; in wpa_config_parse_eap() 1527 const struct eap_method_type *eap_methods = ssid->eap.eap_methods; in wpa_config_write_eap() local 1530 if (eap_methods == NULL) in wpa_config_write_eap() 1538 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF || in wpa_config_write_eap() 1539 eap_methods[i].method != EAP_TYPE_NONE; i++) { in wpa_config_write_eap() 1540 name = eap_get_name(eap_methods[i].vendor, in wpa_config_write_eap() 1541 eap_methods[i].method); in wpa_config_write_eap() [all …]
|
D | interworking.c | 1413 os_free(ssid->eap.eap_methods); in interworking_set_eap_params() 1414 ssid->eap.eap_methods = in interworking_set_eap_params() 1416 if (ssid->eap.eap_methods == NULL) in interworking_set_eap_params() 1418 os_memcpy(ssid->eap.eap_methods, cred->eap_method, in interworking_set_eap_params() 1420 ssid->eap.eap_methods[1].vendor = EAP_VENDOR_IETF; in interworking_set_eap_params() 1421 ssid->eap.eap_methods[1].method = EAP_TYPE_NONE; in interworking_set_eap_params()
|
D | nmake.mak | 89 $(OBJDIR)\eap_methods.obj \
|
D | wps_supplicant.c | 441 os_free(ssid->eap.eap_methods); in wpa_supplicant_wps_cred() 442 ssid->eap.eap_methods = NULL; in wpa_supplicant_wps_cred()
|
D | events.c | 412 if (ssid == NULL || ssid->eap.eap_methods == NULL) { in wpa_supplicant_scard_init() 416 struct eap_method_type *eap = ssid->eap.eap_methods; in wpa_supplicant_scard_init()
|
/external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/ |
D | sta_network.cpp | 894 if (wpa_ssid->eap.eap_methods) { in setEapMethodInternal() 895 os_free(wpa_ssid->eap.eap_methods); in setEapMethodInternal() 902 wpa_ssid->eap.eap_methods = in setEapMethodInternal() 904 if (!wpa_ssid->eap.eap_methods) { in setEapMethodInternal() 907 wpa_ssid->eap.eap_methods[0].vendor = retrieved_vendor; in setEapMethodInternal() 908 wpa_ssid->eap.eap_methods[0].method = retrieved_method; in setEapMethodInternal() 909 wpa_ssid->eap.eap_methods[1].vendor = EAP_VENDOR_IETF; in setEapMethodInternal() 910 wpa_ssid->eap.eap_methods[1].method = EAP_TYPE_NONE; in setEapMethodInternal() 921 MSG_MSGDUMP, "eap methods", (u8 *)wpa_ssid->eap.eap_methods, in setEapMethodInternal() 1246 if (!wpa_ssid->eap.eap_methods) { in getEapMethodInternal() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
D | dbus_old_handlers.c | 484 char **eap_methods; in wpas_dbus_iface_capabilities() local 501 eap_methods = eap_get_names_as_string_array(&num_items); in wpas_dbus_iface_capabilities() 502 if (eap_methods) { in wpas_dbus_iface_capabilities() 507 &iter_dict, "eap", (const char **) eap_methods, in wpas_dbus_iface_capabilities() 511 while (eap_methods[i]) in wpas_dbus_iface_capabilities() 512 os_free(eap_methods[i++]); in wpas_dbus_iface_capabilities() 513 os_free(eap_methods); in wpas_dbus_iface_capabilities()
|
D | dbus_new_handlers.c | 946 char **eap_methods; in wpas_dbus_getter_eap_methods() local 950 eap_methods = eap_get_names_as_string_array(&num_items); in wpas_dbus_getter_eap_methods() 951 if (!eap_methods) { in wpas_dbus_getter_eap_methods() 958 eap_methods, in wpas_dbus_getter_eap_methods() 962 os_free(eap_methods[--num_items]); in wpas_dbus_getter_eap_methods() 963 os_free(eap_methods); in wpas_dbus_getter_eap_methods()
|
/external/wpa_supplicant_8/wpa_supplicant/hidl/1.1/ |
D | sta_network.cpp | 913 if (wpa_ssid->eap.eap_methods) { in setEapMethodInternal() 914 os_free(wpa_ssid->eap.eap_methods); in setEapMethodInternal() 921 wpa_ssid->eap.eap_methods = in setEapMethodInternal() 923 if (!wpa_ssid->eap.eap_methods) { in setEapMethodInternal() 926 wpa_ssid->eap.eap_methods[0].vendor = retrieved_vendor; in setEapMethodInternal() 927 wpa_ssid->eap.eap_methods[0].method = retrieved_method; in setEapMethodInternal() 928 wpa_ssid->eap.eap_methods[1].vendor = EAP_VENDOR_IETF; in setEapMethodInternal() 929 wpa_ssid->eap.eap_methods[1].method = EAP_TYPE_NONE; in setEapMethodInternal() 940 MSG_MSGDUMP, "eap methods", (u8 *)wpa_ssid->eap.eap_methods, in setEapMethodInternal() 1284 if (!wpa_ssid->eap.eap_methods) { in getEapMethodInternal() [all …]
|