HomeSort by relevance Sort by last modified time
    Searched refs:eap_method (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_methods.h 18 const struct eap_method * eap_server_get_eap_method(int vendor,
20 struct eap_method * eap_server_method_alloc(int version, int vendor,
22 void eap_server_method_free(struct eap_method *method);
23 int eap_server_method_register(struct eap_method *method);
eap_methods.c 22 static struct eap_method *eap_methods;
31 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method)
33 struct eap_method *m;
53 struct eap_method *m;
77 struct eap_method * eap_server_method_alloc(int version, int vendor,
80 struct eap_method *eap;
96 void eap_server_method_free(struct eap_method *method)
111 int eap_server_method_register(struct eap_method *method)
113 struct eap_method *m, *last = NULL;
297 struct eap_method *m
    [all...]
eap_i.h 25 * struct eap_method - EAP method interface
30 struct eap_method { struct
58 * registration (e.g., allocated struct eap_method), they should be
64 void (*free)(struct eap_method *method);
83 struct eap_method *next;
88 * @priv: Pointer to private EAP method data from eap_method::init()
145 const struct eap_method *m; /* selected EAP method */
eap_aka.c 54 u8 eap_method; member in struct:eap_aka_data
109 data->eap_method = EAP_TYPE_AKA;
135 data->eap_method = EAP_TYPE_AKA_PRIME;
206 if (data->eap_method == EAP_TYPE_AKA_PRIME)
212 data->eap_method == EAP_TYPE_AKA_PRIME ?
238 hash_len = data->eap_method == EAP_TYPE_AKA_PRIME ?
251 if (data->eap_method == EAP_TYPE_AKA_PRIME)
272 msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, data->eap_method,
368 msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, data->eap_method,
374 if (data->eap_method == EAP_TYPE_AKA_PRIME)
    [all...]
eap_identity.c 158 struct eap_method *eap;
eap_md5.c 156 struct eap_method *eap;
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_methods.h 20 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method);
21 const struct eap_method * eap_peer_get_methods(size_t *count);
23 struct eap_method * eap_peer_method_alloc(int version, int vendor,
25 void eap_peer_method_free(struct eap_method *method);
26 int eap_peer_method_register(struct eap_method *method);
76 int eap_peer_method_unload(struct eap_method *method);
85 static inline int eap_peer_method_unload(struct eap_method *method)
eap_methods.c 25 static struct eap_method *eap_methods = NULL;
34 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method)
36 struct eap_method *m;
56 struct eap_method *m;
79 struct eap_method *m;
98 struct eap_method *m;
132 struct eap_method *m;
167 const struct eap_method * eap_peer_get_methods(size_t *count)
170 struct eap_method *m;
235 int eap_peer_method_unload(struct eap_method *method
    [all...]
eap_i.h 33 * struct eap_method_ret - EAP return values from struct eap_method::process()
37 * the return value of struct eap_method::process() so it is not included in
64 * struct eap_method - EAP method interface
69 struct eap_method { struct
100 * @priv: Pointer to private EAP method data from eap_method::init()
109 * @priv: Pointer to private EAP method data from eap_method::init()
128 * @priv: Pointer to private EAP method data from eap_method::init()
136 * @priv: Pointer to private EAP method data from eap_method::init()
149 * @priv: Pointer to private EAP method data from eap_method::init()
166 * @priv: Pointer to private EAP method data from eap_method::init(
    [all...]
eap_aka.c 59 u8 eap_method; member in struct:eap_aka_data
106 data->eap_method = EAP_TYPE_AKA;
123 data->eap_method = EAP_TYPE_AKA_PRIME;
345 if (data->eap_method == EAP_TYPE_AKA_PRIME)
352 data->eap_method == EAP_TYPE_AKA_PRIME ?
378 hash_len = data->eap_method == EAP_TYPE_AKA_PRIME ?
392 if (data->eap_method == EAP_TYPE_AKA_PRIME)
416 msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
434 msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
450 msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
    [all...]
eap_otp.c 91 struct eap_method *eap;
eap_md5.c 104 struct eap_method *eap;
eap_gtc.c 135 struct eap_method *eap;
eap_vendor_test.c 176 struct eap_method *eap;
  /external/wpa_supplicant_8/src/eap_server/
eap_methods.h 14 const struct eap_method * eap_server_get_eap_method(int vendor,
16 struct eap_method * eap_server_method_alloc(int version, int vendor,
18 void eap_server_method_free(struct eap_method *method);
19 int eap_server_method_register(struct eap_method *method);
eap_server_methods.c 16 static struct eap_method *eap_methods;
25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method)
27 struct eap_method *m;
47 struct eap_method *m;
71 struct eap_method * eap_server_method_alloc(int version, int vendor,
74 struct eap_method *eap;
90 void eap_server_method_free(struct eap_method *method)
105 int eap_server_method_register(struct eap_method *method)
107 struct eap_method *m, *last = NULL;
138 struct eap_method *m
    [all...]
eap_i.h 19 * struct eap_method - EAP method interface
24 struct eap_method { struct
52 * registration (e.g., allocated struct eap_method), they should be
58 void (*free)(struct eap_method *method);
77 struct eap_method *next;
82 * @priv: Pointer to private EAP method data from eap_method::init()
139 const struct eap_method *m; /* selected EAP method */
eap_server_aka.c 48 u8 eap_method; member in struct:eap_aka_data
103 data->eap_method = EAP_TYPE_AKA;
129 data->eap_method = EAP_TYPE_AKA_PRIME;
199 if (data->eap_method == EAP_TYPE_AKA_PRIME)
205 data->eap_method == EAP_TYPE_AKA_PRIME ?
231 hash_len = data->eap_method == EAP_TYPE_AKA_PRIME ?
244 if (data->eap_method == EAP_TYPE_AKA_PRIME)
265 msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, data->eap_method,
361 msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, data->eap_method,
367 if (data->eap_method == EAP_TYPE_AKA_PRIME)
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_methods.h 14 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method);
15 const struct eap_method * eap_peer_get_methods(size_t *count);
17 struct eap_method * eap_peer_method_alloc(int version, int vendor,
19 void eap_peer_method_free(struct eap_method *method);
20 int eap_peer_method_register(struct eap_method *method);
69 int eap_peer_method_unload(struct eap_method *method);
78 static inline int eap_peer_method_unload(struct eap_method *method)
eap_methods.c 19 static struct eap_method *eap_methods = NULL;
28 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method)
30 struct eap_method *m;
50 struct eap_method *m;
73 struct eap_method *m;
94 struct eap_method *m;
128 struct eap_method *m;
163 const struct eap_method * eap_peer_get_methods(size_t *count)
166 struct eap_method *m;
231 int eap_peer_method_unload(struct eap_method *method
    [all...]
eap_i.h 27 * struct eap_method_ret - EAP return values from struct eap_method::process()
31 * the return value of struct eap_method::process() so it is not included in
58 * struct eap_method - EAP method interface
63 struct eap_method { struct
94 * @priv: Pointer to private EAP method data from eap_method::init()
103 * @priv: Pointer to private EAP method data from eap_method::init()
122 * @priv: Pointer to private EAP method data from eap_method::init()
130 * @priv: Pointer to private EAP method data from eap_method::init()
143 * @priv: Pointer to private EAP method data from eap_method::init()
160 * @priv: Pointer to private EAP method data from eap_method::init(
    [all...]
eap_aka.c 51 u8 eap_method; member in struct:eap_aka_data
98 data->eap_method = EAP_TYPE_AKA;
115 data->eap_method = EAP_TYPE_AKA_PRIME;
357 if (data->eap_method == EAP_TYPE_AKA_PRIME)
364 data->eap_method == EAP_TYPE_AKA_PRIME ?
390 hash_len = data->eap_method == EAP_TYPE_AKA_PRIME ?
404 if (data->eap_method == EAP_TYPE_AKA_PRIME)
428 msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
446 msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
462 msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
    [all...]
eap_otp.c 85 struct eap_method *eap;
eap_md5.c 98 struct eap_method *eap;
eap_gtc.c 129 struct eap_method *eap;

Completed in 253 milliseconds

1 2 3 4