Searched defs:newpath (Results 1 - 5 of 5) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_include.c | 1694 char *newpath; local 1697 rv = apr_filepath_merge(&newpath, NULL, tag_val, 1708 rr = ap_sub_req_lookup_file(newpath, r, NULL); 1820 char *newpath; local 1823 rv = apr_filepath_merge(&newpath, NULL, parsed_string, 1831 rr = ap_sub_req_lookup_file(newpath, r, f->next);
|
/httpd/modules/proxy/ |
H A D | proxy_util.c | 960 const char *newpath = NULL; local 995 newpath = ent[i].real; 996 pdiff = strlen(newpath) - l1; 1024 if (newpath) { 1026 l1 = strlen(newpath); 1031 memcpy(ret + poffs, newpath, l1); 1040 memcpy(ret + poffs + ddiff, newpath, l1); 1046 memcpy(ret + poffs, newpath, l1);
|
/httpd/server/ |
H A D | config.c | 1569 char *newpath = NULL; local 1571 rv = apr_filepath_merge(&newpath, ap_server_root, file, 1573 if (newpath && (rv == APR_SUCCESS || APR_STATUS_IS_EPATHWILD(rv) 1576 return newpath; 1585 char *newpath = NULL; local 1589 rv = apr_filepath_merge(&newpath, runtime_dir, file, 1591 if (newpath && (rv == APR_SUCCESS || APR_STATUS_IS_EPATHWILD(rv) 1594 return newpath;
|
H A D | core.c | 2241 char *newpath; local 2246 apr_status_t rv = apr_filepath_merge(&newpath, NULL, cmd->path, 2253 cmd->path = newpath; 2416 char *newpath; local 2419 if (apr_filepath_merge(&newpath, "", cmd->path, 2423 cmd->path = newpath;
|
H A D | util.c | 245 const char *newpath; local 247 if (apr_filepath_root(&newpath, &dir, 0, p) != APR_SUCCESS 248 || strncmp(newpath, ourdir, strlen(newpath)) != 0) {
|
Completed in 49 milliseconds