Searched refs:MemoryCache (Results 1 - 25 of 42) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebCache.cpp34 #include "core/fetch/MemoryCache.h"
36 using WebCore::MemoryCache;
40 // A helper method for coverting a MemoryCache::TypeStatistic to a
42 static void ToResourceTypeStat(const MemoryCache::TypeStatistic& from,
54 MemoryCache* cache = WebCore::memoryCache();
63 MemoryCache* cache = WebCore::memoryCache();
72 MemoryCache* cache = WebCore::memoryCache();
85 MemoryCache* cache = WebCore::memoryCache();
87 MemoryCache::Statistics stats = cache->getStatistics();
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCache.h62 class MemoryCache : public blink::WebThread::TaskObserver { class in namespace:WebCore
63 WTF_MAKE_NONCOPYABLE(MemoryCache); WTF_MAKE_FAST_ALLOCATED;
65 MemoryCache();
66 virtual ~MemoryCache();
163 void dumpStats(Timer<MemoryCache>*);
212 Timer<MemoryCache> m_statsTimer;
217 MemoryCache* memoryCache();
220 void setMemoryCacheForTesting(MemoryCache*);
H A DMemoryCache.cpp24 #include "core/fetch/MemoryCache.h"
48 static MemoryCache* gMemoryCache;
56 MemoryCache* memoryCache()
60 gMemoryCache = new MemoryCache();
64 void setMemoryCacheForTesting(MemoryCache* memoryCache)
69 MemoryCache::MemoryCache() function in class:WebCore::MemoryCache
81 , m_statsTimer(this, &MemoryCache::dumpStats)
91 MemoryCache::~MemoryCache()
[all...]
H A DImageResource.h40 class MemoryCache;
45 friend class MemoryCache;
H A DFontResource.h75 friend class MemoryCache;
H A DMemoryCacheTest.cpp32 #include "core/fetch/MemoryCache.h"
85 m_testingMemoryCache = adoptPtr(new MemoryCache());
98 OwnPtr<MemoryCache> m_testingMemoryCache;
99 OwnPtr<MemoryCache> m_globalMemoryCache;
/external/chromium_org/net/tools/flip_server/
H A Dmem_cache.cc67 MemoryCache::MemoryCache() : cwd_(FLAGS_cache_base_dir) {} function in class:net::MemoryCache
69 MemoryCache::~MemoryCache() { ClearFiles(); }
71 void MemoryCache::CloneFrom(const MemoryCache& mc) {
78 void MemoryCache::AddFiles() {
121 void MemoryCache::ReadToString(const char* filename, std::string* output) {
137 void MemoryCache::ReadAndStoreFileContents(const char* filename) {
205 FileData* MemoryCache
[all...]
H A Dacceptor_thread.h23 class MemoryCache;
49 SMAcceptorThread(FlipAcceptor* acceptor, MemoryCache* memory_cache);
92 MemoryCache* memory_cache_;
H A Dsm_connection.h26 class MemoryCache;
50 MemoryCache* memory_cache,
61 MemoryCache* memory_cache() { return memory_cache_; }
125 MemoryCache* memory_cache,
142 MemoryCache* memory_cache_;
H A Dmem_cache.h112 class MemoryCache { class in namespace:net
117 MemoryCache();
118 virtual ~MemoryCache();
120 void CloneFrom(const MemoryCache& mc);
H A Dhttp_interface.h23 class MemoryCache;
29 MemoryCache* memory_cache,
136 MemoryCache* memory_cache_;
H A Dmem_cache_test.cc14 class MemoryCacheWithFakeReadToString : public MemoryCache {
H A Dspdy_interface.h24 class MemoryCache;
31 MemoryCache* memory_cache,
203 MemoryCache* memory_cache_;
H A Dflip_in_mem_edsm_server.cc329 net::MemoryCache spdy_memory_cache;
355 net::MemoryCache http_memory_cache;
386 acceptor, (net::MemoryCache*)acceptor->memory_cache_));
389 // we either must make the MemoryCache threadsafe, or use
390 // a separate MemoryCache for each thread.
H A Dacceptor_thread.cc24 MemoryCache* memory_cache)
/external/chromium/net/tools/flip_server/
H A Dacceptor_thread.h22 class MemoryCache;
48 SMAcceptorThread(FlipAcceptor *acceptor, MemoryCache* memory_cache);
89 MemoryCache* memory_cache_;
H A Dsm_connection.h24 class MemoryCache;
51 MemoryCache* memory_cache,
62 MemoryCache* memory_cache() { return memory_cache_; }
125 MemoryCache* memory_cache,
140 MemoryCache* memory_cache_;
H A Dmem_cache.cc64 MemoryCache::MemoryCache() {} function in class:net::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
[all...]
H A Dmem_cache.h107 class MemoryCache { class in namespace:net
112 MemoryCache();
113 ~MemoryCache();
115 void CloneFrom(const MemoryCache& mc);
H A Dhttp_interface.h22 class MemoryCache;
30 MemoryCache* memory_cache,
128 MemoryCache* memory_cache_;
H A Dspdy_interface.h24 class MemoryCache;
32 MemoryCache* memory_cache,
133 MemoryCache* memory_cache_;
H A Dflip_in_mem_edsm_server.cc332 net::MemoryCache spdy_memory_cache;
351 net::MemoryCache http_memory_cache;
376 (net::MemoryCache *)acceptor->memory_cache_));
379 // we either must make the MemoryCache threadsafe, or use
380 // a separate MemoryCache for each thread.
H A Dacceptor_thread.cc24 MemoryCache* memory_cache)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMURL.cpp34 #include "core/fetch/MemoryCache.h"
90 MemoryCache::removeURLFromCache(executionContext, url);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DImageBitmapTest.cpp37 #include "core/fetch/MemoryCache.h"
67 m_testingMemoryCache = adoptPtr(new MemoryCache());
80 OwnPtr<MemoryCache> m_testingMemoryCache;
81 OwnPtr<MemoryCache> m_globalMemoryCache;

Completed in 312 milliseconds

12