HomeSort by relevance Sort by last modified time
    Searched defs:eap_methods (Results 1 - 9 of 9) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_methods.c 19 #include "eap_methods.h"
22 static struct eap_method *eap_methods; variable in typeref:struct:eap_method
34 for (m = eap_methods; m; m = m->next) {
54 for (m = eap_methods; m; m = m->next) {
119 for (m = eap_methods; m; m = m->next) {
130 eap_methods = method;
299 while (eap_methods) {
300 m = eap_methods;
301 eap_methods = eap_methods->next
    [all...]
  /external/wpa_supplicant/
eap_methods.c 22 #include "eap_methods.h"
25 static struct eap_method *eap_methods = NULL; variable in typeref:struct:eap_method
37 for (m = eap_methods; m; m = m->next) {
57 for (m = eap_methods; m; m = m->next) {
80 for (m = eap_methods; m; m = m->next) {
107 for (m = eap_methods; m; m = m->next) {
109 m == eap_methods ? "" : " ", m->name);
137 for (m = eap_methods; m; m = m->next)
144 for (m = eap_methods; m; m = m->next) {
172 for (m = eap_methods; m; m = m->next
    [all...]
ctrl_iface_dbus_handlers.c 25 #include "eap_methods.h"
469 char **eap_methods; local
486 eap_methods = eap_get_names_as_string_array(&num_items);
487 if (eap_methods) {
492 &iter_dict, "eap", (const char **) eap_methods,
496 while (eap_methods[i])
497 free(eap_methods[i++]);
498 free(eap_methods);
    [all...]
config.c 921 ssid->eap_methods = methods;
931 const struct eap_method_type *eap_methods = ssid->eap_methods; local
934 if (eap_methods == NULL)
942 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF ||
943 eap_methods[i].method != EAP_TYPE_NONE; i++) {
944 name = eap_get_name(eap_methods[i].vendor,
945 eap_methods[i].method);
1331 os_free(ssid->eap_methods);
    [all...]
config_ssid.h 487 * eap_methods - Allowed EAP methods
492 struct eap_method_type *eap_methods; member in struct:wpa_ssid
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_methods.c 22 #include "eap_methods.h"
25 static struct eap_method *eap_methods = NULL; variable in typeref:struct:eap_method
37 for (m = eap_methods; m; m = m->next) {
57 for (m = eap_methods; m; m = m->next) {
80 for (m = eap_methods; m; m = m->next) {
107 for (m = eap_methods; m; m = m->next) {
109 m == eap_methods ? "" : " ", m->name);
137 for (m = eap_methods; m; m = m->next)
144 for (m = eap_methods; m; m = m->next) {
172 for (m = eap_methods; m; m = m->next
    [all...]
eap_config.h 300 * eap_methods - Allowed EAP methods
305 struct eap_method_type *eap_methods; member in struct:eap_peer_config
  /external/wpa_supplicant_6/wpa_supplicant/
ctrl_iface_dbus_handlers.c 22 #include "eap_peer/eap_methods.h"
527 char **eap_methods; local
544 eap_methods = eap_get_names_as_string_array(&num_items);
545 if (eap_methods) {
550 &iter_dict, "eap", (const char **) eap_methods,
554 while (eap_methods[i])
555 free(eap_methods[i++]);
556 free(eap_methods);
    [all...]
config.c 1008 ssid->eap.eap_methods = methods;
1018 const struct eap_method_type *eap_methods = ssid->eap.eap_methods; local
1021 if (eap_methods == NULL)
1029 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF ||
1030 eap_methods[i].method != EAP_TYPE_NONE; i++) {
1031 name = eap_get_name(eap_methods[i].vendor,
1032 eap_methods[i].method);
    [all...]

Completed in 653 milliseconds