OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MemBackendImpl
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/net/disk_cache/
mem_backend_impl.cc
31
MemBackendImpl
::
MemBackendImpl
(net::NetLog* net_log)
34
MemBackendImpl
::~
MemBackendImpl
() {
44
scoped_ptr<Backend>
MemBackendImpl
::CreateBackend(int max_bytes,
46
scoped_ptr<
MemBackendImpl
> cache(new
MemBackendImpl
(net_log));
55
bool
MemBackendImpl
::Init() {
77
bool
MemBackendImpl
::SetMaxSize(int max_bytes) {
90
void
MemBackendImpl
::InternalDoomEntry(MemEntryImpl* entry)
[
all
...]
mem_backend_impl.h
25
class NET_EXPORT_PRIVATE
MemBackendImpl
: public Backend {
27
explicit
MemBackendImpl
(net::NetLog* net_log);
28
virtual ~
MemBackendImpl
();
115
DISALLOW_COPY_AND_ASSIGN(
MemBackendImpl
);
mem_entry_impl.h
16
class
MemBackendImpl
;
53
explicit MemEntryImpl(
MemBackendImpl
* backend);
175
MemBackendImpl
* backend_; // Back pointer to the cache.
disk_cache_test_base.h
28
class
MemBackendImpl
;
152
disk_cache::
MemBackendImpl
* mem_cache_;
cache_creator.cc
155
*backend = disk_cache::
MemBackendImpl
::CreateBackend(max_bytes, net_log);
disk_cache_test_base.cc
259
mem_cache_ = new disk_cache::
MemBackendImpl
(NULL);
mem_entry_impl.cc
62
MemEntryImpl::MemEntryImpl(
MemBackendImpl
* backend) {
backend_unittest.cc
421
cache = disk_cache::
MemBackendImpl
::CreateBackend(0, NULL);
[
all
...]
/external/chromium/net/disk_cache/
mem_backend_impl.cc
31
MemBackendImpl
::
MemBackendImpl
(net::NetLog* net_log)
34
MemBackendImpl
::~
MemBackendImpl
() {
44
Backend*
MemBackendImpl
::CreateBackend(int max_bytes, net::NetLog* net_log) {
45
MemBackendImpl
* cache = new
MemBackendImpl
(net_log);
55
bool
MemBackendImpl
::Init() {
80
bool
MemBackendImpl
::SetMaxSize(int max_bytes) {
93
void
MemBackendImpl
::InternalDoomEntry(MemEntryImpl* entry)
[
all
...]
mem_backend_impl.h
26
class
MemBackendImpl
: public Backend {
28
explicit
MemBackendImpl
(net::NetLog* net_log);
29
~
MemBackendImpl
();
113
DISALLOW_COPY_AND_ASSIGN(
MemBackendImpl
);
mem_entry_impl.h
17
class
MemBackendImpl
;
54
explicit MemEntryImpl(
MemBackendImpl
* backend);
180
MemBackendImpl
* backend_; // Back pointer to the cache.
disk_cache_test_base.h
28
class
MemBackendImpl
;
125
disk_cache::
MemBackendImpl
* mem_cache_;
disk_cache_test_base.cc
224
cache_ = disk_cache::
MemBackendImpl
::CreateBackend(size_, NULL);
228
mem_cache_ = new disk_cache::
MemBackendImpl
(NULL);
mem_entry_impl.cc
48
MemEntryImpl::MemEntryImpl(
MemBackendImpl
* backend) {
backend_impl.cc
298
*backend =
MemBackendImpl
::CreateBackend(max_bytes, net_log);
[
all
...]
backend_unittest.cc
209
cache = disk_cache::
MemBackendImpl
::CreateBackend(0, NULL);
[
all
...]
Completed in 127 milliseconds