Lines Matching refs:ftable
279 struct krb5plugin_preauth_server_ftable_v1 *ftable; in load_preauth_plugins() local
309 ftable = preauth_plugins_ftables[i]; in load_preauth_plugins()
310 if ((ftable->flags_proc == NULL) && in load_preauth_plugins()
311 (ftable->edata_proc == NULL) && in load_preauth_plugins()
312 (ftable->verify_proc == NULL) && in load_preauth_plugins()
313 (ftable->return_proc == NULL)) { in load_preauth_plugins()
317 ftable->pa_type_list != NULL && in load_preauth_plugins()
318 ftable->pa_type_list[j] > 0; in load_preauth_plugins()
368 ftable = preauth_plugins_ftables[i]; in load_preauth_plugins()
369 if ((ftable->flags_proc == NULL) && in load_preauth_plugins()
370 (ftable->edata_proc == NULL) && in load_preauth_plugins()
371 (ftable->verify_proc == NULL) && in load_preauth_plugins()
372 (ftable->return_proc == NULL)) { in load_preauth_plugins()
377 ftable->pa_type_list != NULL && in load_preauth_plugins()
378 ftable->pa_type_list[j] > 0; in load_preauth_plugins()
383 server_init_proc = ftable->init_proc; in load_preauth_plugins()
393 ftable->name, emsg); in load_preauth_plugins()
402 preauth_systems[k].name = ftable->name; in load_preauth_plugins()
403 preauth_systems[k].type = ftable->pa_type_list[j]; in load_preauth_plugins()
404 if (ftable->flags_proc != NULL) in load_preauth_plugins()
405 preauth_systems[k].flags = ftable->flags_proc(context, preauth_systems[k].type); in load_preauth_plugins()
412 preauth_systems[k].fini = ftable->fini_proc; in load_preauth_plugins()
415 preauth_systems[k].get_edata = ftable->edata_proc; in load_preauth_plugins()
416 preauth_systems[k].verify_padata = ftable->verify_proc; in load_preauth_plugins()
417 preauth_systems[k].return_padata = ftable->return_proc; in load_preauth_plugins()
419 ftable->freepa_reqcontext_proc; in load_preauth_plugins()