Lines Matching defs:ent
843 struct proxy_alias *ent;
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;
987 ent = (struct proxy_alias *)rconf->cookie_paths->elts;
990 ent = (struct proxy_alias *)conf->cookie_paths->elts;
993 l2 = strlen(ent[i].fake);
994 if (l1 >= l2 && strncmp(ent[i].fake, pathp, l2) == 0) {
995 newpath = ent[i].real;
1009 ent = (struct proxy_alias *)rconf->cookie_domains->elts;
1012 ent = (struct proxy_alias *)conf->cookie_domains->elts;
1015 l2 = strlen(ent[i].fake);
1016 if (l1 >= l2 && strncasecmp(ent[i].fake, domainp, l2) == 0) {
1017 newdomain = ent[i].real;