Searched refs:ent (Results 1 - 8 of 8) sorted by relevance

/httpd/modules/arch/unix/
H A Dmod_unixd.c95 struct passwd *ent; local
98 if ((ent = getpwuid(uid)) == NULL) {
106 name = ent->pw_name;
/httpd/modules/cache/
H A Dcache_util.c131 static cache_provider_list *get_provider(request_rec *r, struct cache_enable *ent, argument
136 provider = ap_lookup_provider(CACHE_PROVIDER_GROUP, ent->type,
144 newp->provider_name = ent->type;
184 struct cache_disable *ent = local
186 if (uri_meets_conditions(&ent[i].url, ent[i].pathlen, &uri)) {
194 struct cache_enable *ent = local
196 providers = get_provider(r, &ent[i], providers);
201 struct cache_enable *ent = local
203 if (uri_meets_conditions(&ent[
[all...]
/httpd/modules/generators/
H A Dmod_autoindex.c746 struct ent { struct
753 struct ent *next;
1247 static struct ent *make_parent_entry(apr_int32_t autoindex_opts,
1252 struct ent *p = (struct ent *) apr_pcalloc(r->pool, sizeof(struct ent));
1299 static struct ent *make_autoindex_entry(const apr_finfo_t *dirent,
1307 struct ent *p;
1352 p = (struct ent *) apr_pcalloc(r->pool, sizeof(struct ent));
[all...]
/httpd/server/
H A Dmpm_common.c245 struct passwd *ent; local
250 if (!(ent = getpwnam(name))) {
256 return (ent->pw_uid);
263 struct group *ent; local
268 if (!(ent = getgrnam(name))) {
274 return (ent->gr_gid);
/httpd/modules/aaa/
H A Dmod_authnz_ldap.c842 struct mod_auth_ldap_groupattr_entry_t *ent; local
920 ent = (struct mod_auth_ldap_groupattr_entry_t *) sec->groupattr->elts;
959 ent[i].name,
962 result = util_ldap_cache_compare(r, ldc, sec->url, t, ent[i].name,
969 ent[i].name, ldc->reason, result,
978 t, ent[i].name, ldc->reason, result,
995 result = util_ldap_cache_check_subgroups(r, ldc, sec->url, t, ent[i].name,
1005 ent[i].name, ldc->reason, result,
1015 t, ldc->reason, ent[i].name, result,
/httpd/modules/proxy/
H A Dproxy_util.c843 struct proxy_alias *ent; local
859 ent = (struct proxy_alias *)rconf->raliases->elts;
862 ent = (struct proxy_alias *)conf->raliases->elts;
868 const char *real = ent[i].real;
901 u = apr_pstrcat(r->pool, ent[i].fake, &url[l2 + l3],
908 if ((ent[i].fake[0] == '/') && (ent[i].fake[1] == 0) && (url[l2] == '/')) {
911 u = apr_pstrcat(r->pool, ent[i].fake, &url[l2], NULL);
937 u = apr_pstrcat(r->pool, ent[i].fake, &part[l2], NULL);
958 struct proxy_alias *ent; local
[all...]
H A Dmod_proxy.c599 PROXY_DECLARE(int) ap_proxy_trans_match(request_rec *r, struct proxy_alias *ent, argument
609 unsigned int nocanon = ent->flags & PROXYPASS_NOCANON;
612 if (dconf && (dconf->interpolate_env == 1) && (ent->flags & PROXYPASS_INTERPOLATE)) {
613 fake = proxy_interpolate(r, ent->fake);
614 real = proxy_interpolate(r, ent->real);
617 fake = ent->fake;
618 real = ent->real;
620 if (ent->regex) {
621 if (!ap_regexec(ent->regex, r->uri, AP_MAX_REG_MATCH, regm, 0)) {
626 if (nocanon && ap_regexec(ent
703 struct proxy_alias *ent; local
[all...]
H A Dmod_proxy.h996 * @param ent proxy_alias record
1001 struct proxy_alias *ent,

Completed in 2467 milliseconds