HomeSort by: relevance | last modified time | path
    Searched defs:eap_methods (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/wpa/dist/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
29 for (m = eap_methods; m; m = m->next) {
49 for (m = eap_methods; m; m = m->next) {
118 for (m = eap_methods; m; m = m->next) {
131 eap_methods = method;
147 while (eap_methods) {
148 m = eap_methods;
149 eap_methods = eap_methods->next
    [all...]
  /src/external/bsd/wpa/dist/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
34 for (m = eap_methods; m; m = m->next) {
54 for (m = eap_methods; m; m = m->next) {
79 for (m = eap_methods; m; m = m->next) {
106 for (m = eap_methods; m; m = m->next) {
108 m == eap_methods ? "" : " ", m->name);
136 for (m = eap_methods; m; m = m->next)
143 for (m = eap_methods; m; m = m->next) {
171 for (m = eap_methods; m; m = m->next
    [all...]
eap_config.h 414 * eap_methods - Allowed EAP methods
419 struct eap_method_type *eap_methods; member in struct:eap_peer_config
  /src/external/bsd/wpa/dist/wpa_supplicant/
wpas_glue.c 1021 const struct eap_method_type *eap_methods; local
1027 eap_methods = ssid->eap.eap_methods;
1028 if (!eap_methods)
1031 for (i = 0; eap_methods[i].method != EAP_TYPE_NONE; i++) {
1032 if (eap_methods[i].vendor == EAP_VENDOR_IETF &&
1033 (eap_methods[i].method == EAP_TYPE_SIM ||
1034 eap_methods[i].method == EAP_TYPE_AKA ||
1035 eap_methods[i].method == EAP_TYPE_AKA_PRIME)) {
config.c 1632 if (!errors && ssid->eap.eap_methods) {
1636 prev_m = ssid->eap.eap_methods;
1660 os_free(ssid->eap.eap_methods);
1661 ssid->eap.eap_methods = methods;
1672 const struct eap_method_type *eap_methods = ssid->eap.eap_methods; local
1675 if (eap_methods == NULL)
1683 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF ||
1684 eap_methods[i].method != EAP_TYPE_NONE; i++) {
1685 name = eap_get_name(eap_methods[i].vendor
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/dbus/
dbus_new_handlers.c 15 #include "eap_peer/eap_methods.h"
1235 char **eap_methods; local
1239 eap_methods = eap_get_names_as_string_array(&num_items);
1240 if (!eap_methods) {
1247 eap_methods,
1251 os_free(eap_methods[--num_items]);
1252 os_free(eap_methods);

Completed in 143 milliseconds