OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MemoryCache
(Results
1 - 4
of
4
) sorted by null
/external/chromium/net/tools/flip_server/
mem_cache.cc
64
MemoryCache
::
MemoryCache
() {}
66
MemoryCache
::~
MemoryCache
() {}
68
void
MemoryCache
::CloneFrom(const
MemoryCache
& mc) {
79
void
MemoryCache
::AddFiles() {
124
void
MemoryCache
::ReadToString(const char* filename, std::string* output) {
140
void
MemoryCache
::ReadAndStoreFileContents(const char* filename) {
206
FileData*
MemoryCache
::GetFileData(const std::string& filename)
[
all
...]
mem_cache.h
107
class
MemoryCache
{
112
MemoryCache
();
113
~
MemoryCache
();
115
void CloneFrom(const
MemoryCache
& mc);
/external/webkit/Source/WebCore/loader/cache/
MemoryCache.h
75
class
MemoryCache
{
76
WTF_MAKE_NONCOPYABLE(
MemoryCache
); WTF_MAKE_FAST_ALLOCATED;
78
friend
MemoryCache
*
memoryCache
();
181
MemoryCache
();
182
~
MemoryCache
(); // Not implemented to make sure nobody accidentally calls delete -- WebCore does not delete singletons.
224
inline bool
MemoryCache
::shouldMakeResourcePurgeableOnEviction()
234
MemoryCache
*
memoryCache
();
MemoryCache.cpp
24
#include "
MemoryCache
.h"
54
MemoryCache
*
memoryCache
()
56
static
MemoryCache
* staticCache = new
MemoryCache
;
60
MemoryCache
::
MemoryCache
()
73
KURL
MemoryCache
::removeFragmentIdentifierIfNeeded(const KURL& originalURL)
86
bool
MemoryCache
::add(CachedResource* resource)
96
LOG(ResourceLoading, "
MemoryCache
::add Added '%s', resource %p\n", resource->url().latin1().data(), resource)
[
all
...]
Completed in 1209 milliseconds