/external/wpa_supplicant_8/src/eap_peer/ |
eap_peap.c | 37 const struct eap_method *phase2_method; member in struct:eap_peap_data 183 if (data->phase2_priv && data->phase2_method) 184 data->phase2_method->deinit(sm, data->phase2_priv); 230 if (data->phase2_method == NULL || data->phase2_priv == NULL || 231 data->phase2_method->isKeyAvailable == NULL || 232 data->phase2_method->getKey == NULL) 235 if (!data->phase2_method->isKeyAvailable(sm, data->phase2_priv) || 236 (key = data->phase2_method->getKey(sm, data->phase2_priv, 696 data->phase2_method = eap_peer_get_eap_method( 699 if (data->phase2_method) { [all...] |
eap_fast.c | 38 const struct eap_method *phase2_method; member in struct:eap_fast_data 237 if (data->phase2_priv && data->phase2_method) 238 data->phase2_method->deinit(sm, data->phase2_priv); 348 data->phase2_method = 351 if (data->phase2_method == NULL) 359 data->phase2_priv = data->phase2_method->init(sm); 439 if (data->phase2_priv && data->phase2_method && 443 data->phase2_method->deinit(sm, data->phase2_priv); 444 data->phase2_method = NULL; 462 data->phase2_method == NULL) [all...] |
eap_ttls.c | 34 const struct eap_method *phase2_method; member in struct:eap_ttls_data 172 if (data->phase2_priv && data->phase2_method) { 173 data->phase2_method->deinit(sm, data->phase2_priv); 174 data->phase2_method = NULL; 344 *resp = data->phase2_method->process(sm, data->phase2_priv, &iret, 366 if (data->tnc_started && data->phase2_method && 413 data->phase2_method = eap_peer_get_eap_method( 415 if (data->phase2_method) { 417 data->phase2_priv = data->phase2_method->init(sm); 421 if (data->phase2_priv == NULL || data->phase2_method == NULL) [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_fast.c | 34 START, PHASE1, PHASE2_START, PHASE2_ID, PHASE2_METHOD, 39 const struct eap_method *phase2_method; member in struct:eap_fast_data 86 case PHASE2_METHOD: 87 return "PHASE2_METHOD"; 343 if (data->phase2_method == NULL || data->phase2_priv == NULL) { 349 if (data->phase2_method->getKey == NULL) 352 if ((key = data->phase2_method->getKey(sm, data->phase2_priv, 362 data->phase2_method->vendor == EAP_VENDOR_IETF && 363 data->phase2_method->method == EAP_TYPE_MSCHAPV2) { 513 if (data->phase2_priv && data->phase2_method) [all...] |
eap_server_peap.c | 36 PHASE2_METHOD, PHASE2_SOH, 42 const struct eap_method *phase2_method; member in struct:eap_peap_data 72 case PHASE2_METHOD: 73 return "PHASE2_METHOD"; 200 if (data->phase2_priv && data->phase2_method) 201 data->phase2_method->reset(sm, data->phase2_priv); 240 if (data->phase2_method == NULL || data->phase2_priv == NULL) { 244 buf = data->phase2_method->buildReq(sm, data->phase2_priv, id); 254 data->phase2_method->method != EAP_TYPE_TLV) { 527 case PHASE2_METHOD [all...] |
eap_server_ttls.c | 30 START, PHASE1, PHASE2_START, PHASE2_METHOD, 35 const struct eap_method *phase2_method; member in struct:eap_ttls_data 54 case PHASE2_METHOD: 55 return "PHASE2_METHOD"; 365 if (data->phase2_priv && data->phase2_method) 366 data->phase2_method->reset(sm, data->phase2_priv); 401 buf = data->phase2_method->buildReq(sm, data->phase2_priv, id); 490 case PHASE2_METHOD: 830 if (data->phase2_priv && data->phase2_method) { 831 data->phase2_method->reset(sm, data->phase2_priv) [all...] |