Searched defs:seconds (Results 1 - 3 of 3) sorted by relevance

/httpd/server/
H A Dutil_time.c59 apr_int64_t seconds = apr_time_sec(t); local
61 &(cache[seconds & TIME_CACHE_MASK]);
68 * 'now - AP_TIME_RECENT_THRESHOLD' seconds ago). If the
78 if (cache_element->t >= seconds) {
82 * TIME_CACHE_SIZE seconds ago at the same time that
99 * the cache_element should both match the 'seconds'
110 if ((seconds != cache_element_snapshot.t) ||
111 (seconds != cache_element_snapshot.t_validate)) {
137 cache_element->t = seconds;
139 cache_element->t_validate = seconds;
[all...]
/httpd/modules/cache/
H A Dmod_cache.c2408 apr_int64_t seconds; local
2413 seconds = apr_atoi64(arg);
2414 if (seconds <= 0) {
2417 conf->lockmaxage = apr_time_from_sec(seconds);
2531 "The maximum time in seconds to cache a document"),
2533 "The minimum time in seconds to cache a document"),
2535 "The default time in seconds to cache a document"),
H A Dmod_cache_socache.c1154 "commit_entity: Headers and body for URL %s cached for maximum of %d seconds.",
1306 apr_off_t seconds; local
1308 if (apr_strtoff(&seconds, arg, NULL, 10) != APR_SUCCESS || seconds < 0) {
1309 return "CacheSocacheMaxTime argument must be the maximum amount of time in seconds to cache an entry.";
1311 dconf->maxtime = apr_time_from_sec(seconds);
1320 apr_off_t seconds; local
1322 if (apr_strtoff(&seconds, arg, NULL, 10) != APR_SUCCESS || seconds < 0) {
1323 return "CacheSocacheMinTime argument must be the minimum amount of time in seconds t
[all...]

Completed in 977 milliseconds