Searched refs:newp (Results 1 - 5 of 5) sorted by relevance

/httpd/modules/aaa/
H A Dmod_auth_basic.c91 authn_provider_list *newp; local
93 newp = apr_pcalloc(cmd->pool, sizeof(authn_provider_list));
94 newp->provider_name = arg;
97 newp->provider = ap_lookup_provider(AUTHN_PROVIDER_GROUP,
98 newp->provider_name,
101 if (newp->provider == NULL) {
106 newp->provider_name);
109 if (!newp->provider->check_password) {
113 "Basic Authentication", newp->provider_name);
118 conf->providers = newp;
[all...]
H A Dmod_auth_form.c149 authn_provider_list *newp; local
151 newp = apr_pcalloc(cmd->pool, sizeof(authn_provider_list));
152 newp->provider_name = arg;
155 newp->provider = ap_lookup_provider(AUTHN_PROVIDER_GROUP,
156 newp->provider_name,
159 if (newp->provider == NULL) {
166 newp->provider_name);
169 if (!newp->provider->check_password) {
173 "Form Authentication", newp->provider_name);
178 conf->providers = newp;
[all...]
H A Dmod_auth_digest.c482 authn_provider_list *newp; local
484 newp = apr_pcalloc(cmd->pool, sizeof(authn_provider_list));
485 newp->provider_name = arg;
488 newp->provider = ap_lookup_provider(AUTHN_PROVIDER_GROUP,
489 newp->provider_name,
492 if (newp->provider == NULL) {
497 newp->provider_name);
500 if (!newp->provider->get_realm_hash) {
504 "Digest Authentication", newp->provider_name);
509 conf->providers = newp;
[all...]
/httpd/modules/cache/
H A Dcache_util.c142 cache_provider_list *newp; local
143 newp = apr_pcalloc(r->pool, sizeof(cache_provider_list));
144 newp->provider_name = ent->type;
145 newp->provider = provider;
148 providers = newp;
162 last->next = newp;
/httpd/modules/filters/
H A Dmod_include.c827 const char *newp = NULL, *ep, *key = NULL; local
839 newp = ep + 1;
851 newp = ep;
891 p = newp;

Completed in 30 milliseconds