OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Eviction
(Results
1 - 6
of
6
) 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
...]
/external/chromium_org/net/disk_cache/
eviction.h
18
// This class implements the
eviction
algorithm for the cache and it is tightly
20
class
Eviction
{
22
Eviction
();
23
~
Eviction
();
56
// new
eviction
algorithm. This code will replace the original methods when
84
base::WeakPtrFactory<
Eviction
> ptr_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"
71
Eviction
::
Eviction
()
77
Eviction
::~
Eviction
() {
80
void
Eviction
::Init(BackendImpl* backend) {
97
void
Eviction
::Stop() {
110
void
Eviction
::TrimCache(bool empty)
[
all
...]
/external/chromium_org/net/disk_cache/v3/
eviction_v3.h
18
// This class implements the
eviction
algorithm for the cache and it is tightly
20
class
Eviction
{
22
Eviction
();
23
~
Eviction
();
67
base::WeakPtrFactory<
Eviction
> ptr_factory_;
69
DISALLOW_COPY_AND_ASSIGN(
Eviction
);
eviction_v3.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"
70
Eviction
::
Eviction
()
76
Eviction
::~
Eviction
() {
79
void
Eviction
::Init(BackendImpl* backend) {
96
void
Eviction
::Stop() {
109
void
Eviction
::TrimCache(bool empty)
[
all
...]
Completed in 587 milliseconds