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

  /external/wpa_supplicant_8/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
28 for (m = eap_methods; m; m = m->next) {
48 for (m = eap_methods; m; m = m->next) {
113 for (m = eap_methods; m; m = m->next) {
124 eap_methods = method;
140 while (eap_methods) {
141 m = eap_methods;
142 eap_methods = eap_methods->next
    [all...]
  /external/wpa_supplicant_8/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
31 for (m = eap_methods; m; m = m->next) {
51 for (m = eap_methods; m; m = m->next) {
76 for (m = eap_methods; m; m = m->next) {
103 for (m = eap_methods; m; m = m->next) {
105 m == eap_methods ? "" : " ", m->name);
133 for (m = eap_methods; m; m = m->next)
140 for (m = eap_methods; m; m = m->next) {
168 for (m = eap_methods; m; m = m->next
    [all...]
eap_config.h 306 * eap_methods - Allowed EAP methods
311 struct eap_method_type *eap_methods; member in struct:eap_peer_config
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old_handlers.c 13 #include "eap_peer/eap_methods.h"
499 char **eap_methods; local
516 eap_methods = eap_get_names_as_string_array(&num_items);
517 if (eap_methods) {
522 &iter_dict, "eap", (const char **) eap_methods,
526 while (eap_methods[i])
527 os_free(eap_methods[i++]);
528 os_free(eap_methods);
    [all...]
dbus_new_handlers.c 15 #include "eap_peer/eap_methods.h"
904 char **eap_methods; local
908 eap_methods = eap_get_names_as_string_array(&num_items);
909 if (!eap_methods) {
916 eap_methods,
920 os_free(eap_methods[--num_items]);
921 os_free(eap_methods);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config.c 1016 os_free(ssid->eap.eap_methods);
1017 ssid->eap.eap_methods = methods;
1027 const struct eap_method_type *eap_methods = ssid->eap.eap_methods; local
1030 if (eap_methods == NULL)
1038 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF ||
1039 eap_methods[i].method != EAP_TYPE_NONE; i++) {
1040 name = eap_get_name(eap_methods[i].vendor,
1041 eap_methods[i].method);
    [all...]

Completed in 991 milliseconds