Lines Matching defs:info
213 CACHE_DECLARE(apr_int64_t) ap_cache_current_age(cache_info *info,
225 apparent_age = MAX(0, info->response_time - info->date);
227 response_delay = info->response_time - info->request_time;
229 resident_time = now - info->response_time;
524 cache_info *info = &(h->cache_obj->info);
585 if (h->cache_obj->info.control.no_cache
586 || h->cache_obj->info.control.invalidated) {
601 age = ap_cache_current_age(info, age_c, r->request_time);
604 smaxage = h->cache_obj->info.control.s_maxage_value;
620 maxage_cresp = h->cache_obj->info.control.max_age_value;
666 if (maxstale && (h->cache_obj->info.control.must_revalidate
667 || h->cache_obj->info.control.proxy_revalidate || smaxage != -1)) {
674 (info->expire != APR_DATE_BAD) &&
675 (age < (apr_time_sec(info->expire - info->date) + maxstale - minfresh)))) {
686 (info->expire != APR_DATE_BAD &&
687 (apr_time_sec(info->expire - info->date)) > age))) {