HomeSort by relevance Sort by last modified time
    Searched defs:Eviction (Results 1 - 2 of 2) sorted by null

  /external/chromium/net/disk_cache/
eviction.h 19 // This class implements the eviction algorithm for the cache and it is tightly
21 class Eviction {
23 Eviction();
24 ~Eviction();
56 // new eviction algorithm. This code will replace the original methods when
84 ScopedRunnableMethodFactory<Eviction> factory_;
86 DISALLOW_COPY_AND_ASSIGN(Eviction);
eviction.cc 5 // The eviction policy is a very simple pure LRU, so the elements at the end of
10 // The new (in-development) eviction policy adds re-use as a factor to evict
29 #include "net/disk_cache/eviction.h"
63 Eviction::Eviction()
69 Eviction::~Eviction() {
72 void Eviction::Init(BackendImpl* backend) {
89 void Eviction::Stop() {
102 void Eviction::TrimCache(bool empty)
    [all...]

Completed in 25 milliseconds