Lines Matching defs:provider
154 /* lookup and cache the actual provider now */
155 newp->provider = ap_lookup_provider(AUTHN_PROVIDER_GROUP,
159 if (newp->provider == NULL) {
161 * by the time they use it, the provider should be loaded and
165 "Unknown Authn provider: %s",
169 if (!newp->provider->check_password) {
172 "The '%s' Authn provider doesn't support "
768 const authn_provider *provider;
771 * For now, if a provider isn't set, we'll be nice and use the file
772 * provider.
775 provider = ap_lookup_provider(AUTHN_PROVIDER_GROUP,
779 if (!provider || !provider->check_password) {
781 "no authn provider configured");
788 provider = current_provider->provider;
797 auth_result = provider->check_password(r, sent_user, sent_pw);