HomeSort by relevance Sort by last modified time
    Searched full:eap_methods (Results 1 - 25 of 42) sorted by null

1 2

  /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...]
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...]
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...]
eap.h 20 #include "eap_methods.h"
config_ssid.h 487 * eap_methods - Allowed EAP methods
492 struct eap_method_type *eap_methods; member in struct:wpa_ssid
events.c 183 if (ssid->eap_methods == NULL) {
187 struct eap_method_type *eap = ssid->eap_methods;
  /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.h 20 #include "eap_peer/eap_methods.h"
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_8/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.h 20 #include "eap_peer/eap_methods.h"
eap_config.h 309 * eap_methods - Allowed EAP methods
314 struct eap_method_type *eap_methods; member in struct:eap_peer_config
  /external/wpa_supplicant_8/src/eap_server/
eap_server_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;
146 while (eap_methods) {
147 m = eap_methods;
148 eap_methods = eap_methods->next
    [all...]
eap.h 20 #include "eap_server/eap_methods.h"
  /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...]
eap.h 20 #include "eap_server/eap_methods.h"
  /external/wpa_supplicant_8/wpa_supplicant/
eap_register.c 18 #include "eap_peer/eap_methods.h"
19 #include "eap_server/eap_methods.h"
config.c 1139 ssid->eap.eap_methods = methods;
1149 const struct eap_method_type *eap_methods = ssid->eap.eap_methods; local
1152 if (eap_methods == NULL)
1160 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF ||
1161 eap_methods[i].method != EAP_TYPE_NONE; i++) {
1162 name = eap_get_name(eap_methods[i].vendor,
1163 eap_methods[i].method);
    [all...]
nmake.mak 89 $(OBJDIR)\eap_methods.obj \
  /external/wpa_supplicant_8/hostapd/
eap_register.c 18 #include "eap_server/eap_methods.h"
  /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...]
wps_supplicant.c 248 os_free(ssid->eap.eap_methods);
249 ssid->eap.eap_methods = NULL;
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old_handlers.c 19 #include "eap_peer/eap_methods.h"
505 char **eap_methods; local
522 eap_methods = eap_get_names_as_string_array(&num_items);
523 if (eap_methods) {
528 &iter_dict, "eap", (const char **) eap_methods,
532 while (eap_methods[i])
533 os_free(eap_methods[i++]);
534 os_free(eap_methods);
    [all...]
dbus_new_handlers.c 21 #include "eap_peer/eap_methods.h"
864 char **eap_methods; local
867 eap_methods = eap_get_names_as_string_array(&num_items);
868 if (!eap_methods) {
875 eap_methods, num_items);
878 os_free(eap_methods[--num_items]);
879 os_free(eap_methods);
    [all...]

Completed in 610 milliseconds

1 2