Lines Matching refs:method
60 if (authctxt->method == NULL) in auth2_pam()
66 authctxt->method->method_data = NULL; /* freed in the conv func */ in auth2_pam()
172 authctxt->method->authenticated = 1; in do_pam_kbdint()
190 authctxt->method->abandoned = 1; in do_pam_kbdint()
200 if (authctxt->method->abandons) in do_pam_kbdint()
201 authctxt->method->abandons--; in do_pam_kbdint()
202 if (authctxt->method->attempts) in do_pam_kbdint()
203 authctxt->method->attempts--; in do_pam_kbdint()
226 if (!authctxt || !authctxt->method) { in do_pam_conv_kbd_int()
278 authctxt->method->method_data = (void *) conv_ctxt; in do_pam_conv_kbd_int()
412 kbdint_pam_abandon_chk(Authctxt *authctxt, Authmethod *method)
414 if (!method)
417 if (!method->method_data)
425 kbdint_pam_abandon(Authctxt *authctxt, Authmethod *method) in kbdint_pam_abandon() argument
433 if (!method) in kbdint_pam_abandon()
436 if (!method->method_data) in kbdint_pam_abandon()
439 conv_ctxt = (Convctxt *) method->method_data; in kbdint_pam_abandon()
449 method->method_data = NULL; in kbdint_pam_abandon()
452 method->abandons++; in kbdint_pam_abandon()
453 method->attempts++; in kbdint_pam_abandon()