Lines Matching defs:finfo
45 apr_finfo_t finfo;
46 apr_status_t rv = apr_stat(&finfo, dirname, APR_FINFO_TYPE, p);
48 return rv == APR_SUCCESS && finfo.filetype == APR_DIR;
53 apr_finfo_t finfo;
54 apr_status_t rv = apr_stat(&finfo, filename, APR_FINFO_TYPE, p);
56 return rv == APR_SUCCESS && finfo.filetype == APR_REG;
136 apr_finfo_t finfo;
154 while ((rv = apr_dir_read(&finfo, APR_FINFO_NAME, d)) == APR_SUCCESS) {
157 if (APR_SUCCESS == apr_fnmatch(pattern, finfo.name, APR_FNM_CASE_BLIND)) {
158 rv = ctutil_path_join((char **)&fn, dirname, finfo.name, p, s);
193 apr_finfo_t finfo;
207 rv = apr_file_info_get(&finfo, APR_FINFO_SIZE, f);
215 if (finfo.size > limit) {
219 "limit (%" APR_SIZE_T_FMT ")", finfo.size, fn, limit);
224 nbytes = (apr_size_t)finfo.size;