Lines Matching defs:fname
1773 const char *fname;
1781 return strcmp(f1->fname,f2->fname);
1785 const char *fname,
1802 rv = ap_pcfg_openfile(&cfp, p, fname);
1805 fname, &rv);
1828 const char *fname,
1838 if (ap_is_directory(ptemp, fname)) {
1844 char *path = apr_pstrdup(ptemp, fname);
1870 fnew->fname = ap_make_full_path(ptemp, path, dirent.name);
1885 error = process_resource_config_nofnmatch(s, fnew->fname,
1897 return ap_process_resource_config(s, fname, conftree, p, ptemp);
1902 const char *fname,
1918 rest = ap_strchr_c(fname, '/');
1920 fname = apr_pstrndup(ptemp, fname, rest - fname);
1925 if (!apr_fnmatch_test(fname)) {
1926 path = ap_make_full_path(ptemp, path, fname);
1955 && (apr_fnmatch(fname, dirent.name,
1965 fnew->fname = full_path;
1983 error = process_resource_config_nofnmatch(s, fnew->fname,
1988 error = process_resource_config_fnmatch(s, fnew->fname, rest,
2001 "(use IncludeOptional if required)", fname, path);
2009 const char *fname,
2021 && !(strcmp(fname, ap_server_root_relative(ptemp, SERVER_CONFIG_FILE)))) {
2024 if (apr_stat(&finfo, fname, APR_FINFO_LINK | APR_FINFO_TYPE, ptemp) != APR_SUCCESS)
2028 if (!apr_fnmatch_test(fname)) {
2029 return process_resource_config_nofnmatch(s, fname, conftree, p, ptemp, 0, optional);
2033 const char *rootpath, *filepath = fname;
2040 return apr_pstrcat(p, "Include must have an absolute path, ", fname, NULL);
2043 return apr_pstrcat(p, "Include has a bad path, ", fname, NULL);