Lines Matching refs:now
46 time_t now = seconds_since_boot(); in cache_init() local
50 h->expiry_time = now + CACHE_NEW_EXPIRY; in cache_init()
51 if (now <= detail->flush_time) in cache_init()
53 now = detail->flush_time + 1; in cache_init()
54 h->last_refresh = now; in cache_init()
125 time_t now = seconds_since_boot(); in cache_fresh_locked() local
126 if (now <= detail->flush_time) in cache_fresh_locked()
128 now = detail->flush_time + 1; in cache_fresh_locked()
130 head->last_refresh = now; in cache_fresh_locked()
499 time_t now = seconds_since_boot(); in cache_purge() local
500 if (detail->flush_time >= now) in cache_purge()
501 now = detail->flush_time + 1; in cache_purge()
503 detail->flush_time = now; in cache_purge()
1451 time_t then, now; in write_flush() local
1464 now = seconds_since_boot(); in write_flush()
1465 cd->nextcheck = now; in write_flush()
1471 if (then >= now) { in write_flush()
1473 if (cd->flush_time >= now) in write_flush()
1474 now = cd->flush_time + 1; in write_flush()
1475 then = now; in write_flush()