Lines Matching refs:info
141 apr_finfo_t info;
145 apr_stat(&info, pathname, DIRINFO, p);
409 apr_finfo_t info;
424 while (apr_dir_read(&info, APR_FINFO_TYPE, dir) == APR_SUCCESS && !interrupted) {
426 if (info.filetype == APR_DIR) {
427 if (!strcmp(info.name, ".") || !strcmp(info.name, "..")) {
431 if (list_urls(apr_pstrcat(p, path, "/", info.name, NULL), pool, round)) {
436 else if (info.filetype == APR_REG) {
438 ext = strchr(info.name, '.');
442 nextpath = apr_pstrcat(p, path, "/", info.name, NULL);
482 info.name,
484 - info.name),
538 info.name,
540 - info.name),
603 apr_finfo_t info;
623 while (apr_dir_read(&info, 0, dir) == APR_SUCCESS && !interrupted) {
624 if (!strcmp(info.name, ".") || !strcmp(info.name, "..")) {
628 d->basename = apr_pstrcat(p, path, "/", info.name, NULL);
671 status = apr_stat(&info, d->basename, DIRINFO, p);
686 if (info.filetype == APR_DIR) {
693 if (info.filetype != APR_REG) {
702 d->dsize = info.size;
720 d->htime = info.mtime;
721 d->hsize = info.size;
738 d->dtime = info.mtime;
739 d->dsize = info.size;
1267 * usage info
1382 apr_finfo_t info;
1725 status = apr_stat(&info, path, APR_FINFO_MTIME, instance);
1729 previous = info.mtime;
1743 status = apr_stat(&info, path, APR_FINFO_MTIME, instance);
1747 if (previous != info.mtime) {
1750 previous = info.mtime;
1776 status = apr_stat(&info, path, APR_FINFO_MTIME, instance);
1780 previous = info.mtime;