Searched defs:ent (Results 1 - 7 of 7) sorted by relevance
/httpd/modules/arch/unix/ |
H A D | mod_unixd.c | 95 struct passwd *ent; local 98 if ((ent = getpwuid(uid)) == NULL) { 106 name = ent->pw_name;
|
/httpd/server/ |
H A D | mpm_common.c | 245 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 D | mod_authnz_ldap.c | 842 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/cache/ |
H A D | cache_util.c | 131 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 D | mod_autoindex.c | 746 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/modules/proxy/ |
H A D | mod_proxy.c | 599 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 D | proxy_util.c | 843 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...] |
Completed in 776 milliseconds