OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MemBackendImpl
(Results
1 - 4
of
4
) sorted by null
/external/chromium/net/disk_cache/
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_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
...]
/external/chromium_org/net/disk_cache/
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_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
...]
Completed in 54 milliseconds