Lines Matching full:now
37 base::TimeTicks now) const {
46 if (CanUseEntry(entry, now))
55 base::TimeTicks now) {
59 base::TimeTicks expiration = now +
64 // Entry didn't exist, creating one now.
71 Compact(now, ptr);
83 bool HostCache::CanUseEntry(const Entry* entry, const base::TimeTicks now) {
84 return entry->expiration > now;
87 void HostCache::Compact(base::TimeTicks now, const Entry* pinned_entry) {
91 if (entry != pinned_entry && !CanUseEntry(entry, now)) {