Searched defs:newp (Results 1 - 6 of 6) sorted by relevance
/httpd/modules/aaa/ |
H A D | mod_auth_basic.c | 91 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 D | mod_auth_form.c | 149 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 D | mod_auth_digest.c | 482 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 D | cache_util.c | 142 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 D | mod_proxy_html.c | 780 urlmap *newp; local 798 newp = apr_pmemdup(r->pool, p, sizeof(urlmap)); 800 if (newp->flags & M_INTERPOLATE_FROM) { 801 newp->from.c = interpolate_vars(r, newp->from.c); 802 if (!newp->from.c || !*newp->from.c) 804 if (newp->flags & M_REGEX) { 805 newp->from.r = ap_pregcomp(r->pool, newp [all...] |
H A D | mod_include.c | 827 const char *newp = NULL, *ep, *key = NULL; local 839 newp = ep + 1; 851 newp = ep; 891 p = newp;
|
Completed in 37 milliseconds