Home | History | Annotate | Download | only in eap_peer

Lines Matching refs:phase2_method

34 	const struct eap_method *phase2_method;
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) {
1654 if (data->phase2_priv && data->phase2_method &&
1655 data->phase2_method->deinit_for_reauth)
1656 data->phase2_method->deinit_for_reauth(sm, data->phase2_priv);
1679 if (data->phase2_priv && data->phase2_method &&
1680 data->phase2_method->init_for_reauth)
1681 data->phase2_method->init_for_reauth(sm, data->phase2_priv);
1706 data->phase2_method ?
1707 data->phase2_method->name : "?");