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

12

/external/webkit/Source/WebKit/chromium/src/
H A DWebCache.cpp34 // Instead of providing accessors, we make all members of MemoryCache public.
35 // This will make it easier to track WebCore changes to the MemoryCache class.
36 // FIXME: We should introduce public getters on the MemoryCache class.
38 #include "MemoryCache.h"
45 // A helper method for coverting a MemoryCache::TypeStatistic to a
47 static void ToResourceTypeStat(const MemoryCache::TypeStatistic& from,
59 MemoryCache* cache = WebCore::memoryCache();
68 MemoryCache* cache = WebCore::memoryCache();
79 MemoryCache* cache = WebCore::memoryCache();
92 MemoryCache* cach
[all...]
/external/webkit/Source/WebCore/loader/cache/
H A DMemoryCache.h75 class MemoryCache { class in namespace:WebCore
76 WTF_MAKE_NONCOPYABLE(MemoryCache); WTF_MAKE_FAST_ALLOCATED;
78 friend MemoryCache* memoryCache();
175 MemoryCache();
176 ~MemoryCache(); // Not implemented to make sure nobody accidentally calls delete -- WebCore does not delete singletons.
218 inline bool MemoryCache::shouldMakeResourcePurgeableOnEviction()
228 MemoryCache* memoryCache();
H A DMemoryCache.cpp24 #include "MemoryCache.h"
54 MemoryCache* memoryCache()
56 static MemoryCache* staticCache = new MemoryCache;
60 MemoryCache::MemoryCache() function in class:WebCore::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);
100 void MemoryCache
[all...]
H A DCachedFont.h44 class MemoryCache;
83 friend class MemoryCache;
H A DCachedImage.h35 class MemoryCache;
38 friend class MemoryCache;
H A DCachedCSSStyleSheet.cpp30 #include "MemoryCache.h"
61 if (!MemoryCache::shouldMakeResourcePurgeableOnEviction() && isSafeToMakePurgeable())
H A DCachedScript.cpp30 #include "MemoryCache.h"
126 if (!MemoryCache::shouldMakeResourcePurgeableOnEviction() && isSafeToMakePurgeable())
H A DCachedResource.h40 class MemoryCache;
55 friend class MemoryCache;
H A DCachedResourceLoader.cpp45 #include "MemoryCache.h"
117 KURL url = MemoryCache::removeFragmentIdentifierIfNeeded(resourceURL);
172 KURL url = MemoryCache::removeFragmentIdentifierIfNeeded(KURL(KURL(), requestURL));
312 url = MemoryCache::removeFragmentIdentifierIfNeeded(url);
H A DCachedImage.cpp28 #include "MemoryCache.h"
338 if (!MemoryCache::shouldMakeResourcePurgeableOnEviction())
/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)
H A Dsm_connection.cc28 MemoryCache* memory_cache,
654 MemoryCache* memory_cache,
/external/webkit/Source/WebKit2/WebProcess/ResourceCache/
H A DWebResourceCacheManager.cpp36 #include <WebCore/MemoryCache.h>
68 MemoryCache::SecurityOriginSet origins;
86 MemoryCache::SecurityOriginSet::iterator end = origins.end();
87 for (MemoryCache::SecurityOriginSet::iterator it = origins.begin(); it != end; ++it) {
/external/webkit/Source/WebKit/mac/Misc/
H A DWebCache.mm34 #import <WebCore/MemoryCache.h>
46 WebCore::MemoryCache::Statistics s = WebCore::memoryCache()->getStatistics();
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_settings.cpp32 #include "MemoryCache.h"
336 WebCore::MemoryCache* cache = WebCore::memoryCache();
350 WebCore::MemoryCache* cache = WebCore::memoryCache();
365 WebCore::MemoryCache* cache = WebCore::memoryCache();
/external/webkit/Source/WebKit/win/
H A DWebCache.cpp32 #include <WebCore/MemoryCache.h>
100 WebCore::MemoryCache::Statistics stat = WebCore::memoryCache()->getStatistics();
/external/webkit/Source/WebKit2/WebProcess/win/
H A DWebProcessWin.cpp33 #include <WebCore/MemoryCache.h>
/external/webkit/Source/WebKit2/WebProcess/mac/
H A DWebProcessMac.mm34 #import <WebCore/MemoryCache.h>

Completed in 336 milliseconds

12