Lines Matching defs:info
119 * Are we allowed to serve cached info at all?
429 * Are we allowed to serve cached info at all?
673 r->status = cache->handle->cache_obj->info.status;
821 cache_info *info = NULL;
889 && !cache->stale_handle->cache_obj->info.control.must_revalidate
890 && !cache->stale_handle->cache_obj->info.control.proxy_revalidate) {
1123 && date < cache->stale_handle->cache_obj->info.date) {
1307 info = &cache->handle->cache_obj->info;
1327 info = apr_pcalloc(r->pool, sizeof(cache_info));
1328 /* We only set info->status upon the initial creation. */
1329 info->status = r->status;
1364 memcpy(&info->control, &control, sizeof(cache_control_t));
1372 info->date = apr_date_parse_http(dates);
1375 info->date = APR_DATE_BAD;
1379 if (info->date == APR_DATE_BAD) { /* No, or bad date */
1381 info->date = now;
1383 date = info->date;
1386 info->response_time = now;
1389 info->request_time = r->request_time;
1448 info->expire = exp;
1479 rv = cache->provider->store_headers(cache->handle, r, info);
1493 r->status = info->status;
1864 && !cache->stale_handle->cache_obj->info.control.must_revalidate
1865 && !cache->stale_handle->cache_obj->info.control.proxy_revalidate
1866 && !cache->stale_handle->cache_obj->info.control.s_maxage) {