Home
last modified time | relevance | path

Searched refs:MemoryCache (Results 1 – 25 of 50) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/fetch/
DMemoryCache.cpp45 static OwnPtrWillBePersistent<MemoryCache>* gMemoryCache;
53 MemoryCache* memoryCache() in memoryCache()
57 gMemoryCache = new OwnPtrWillBePersistent<MemoryCache>(MemoryCache::create()); in memoryCache()
61 PassOwnPtrWillBeRawPtr<MemoryCache> replaceMemoryCacheForTesting(PassOwnPtrWillBeRawPtr<MemoryCache in replaceMemoryCacheForTesting()
75 OwnPtrWillBeRawPtr<MemoryCache> oldCache = gMemoryCache->release(); in replaceMemoryCacheForTesting()
94 inline MemoryCache::MemoryCache() in MemoryCache() function in blink::MemoryCache
106 , m_statsTimer(this, &MemoryCache::dumpStats) in MemoryCache()
116 PassOwnPtrWillBeRawPtr<MemoryCache> MemoryCache::create() in create()
118 return adoptPtrWillBeNoop(new MemoryCache()); in create()
121 MemoryCache::~MemoryCache() in ~MemoryCache()
[all …]
DMemoryCache.h129 class MemoryCache FINAL : public NoBaseWillBeGarbageCollectedFinalized<MemoryCache>, public WebThre…
130 WTF_MAKE_NONCOPYABLE(MemoryCache); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
132 static PassOwnPtrWillBeRawPtr<MemoryCache> create();
133 ~MemoryCache();
223 MemoryCache();
228 void dumpStats(Timer<MemoryCache>*);
288 friend RawPtr<MemoryCache> replaceMemoryCacheForTesting(RawPtr<MemoryCache>);
293 Timer<MemoryCache> m_statsTimer;
298 MemoryCache* memoryCache();
302 PassOwnPtrWillBeRawPtr<MemoryCache> replaceMemoryCacheForTesting(PassOwnPtrWillBeRawPtr<MemoryCache
DImageResource.h40 class MemoryCache; variable
45 friend class MemoryCache; variable
DFontResource.h95 friend class MemoryCache; variable
/external/chromium_org/net/tools/flip_server/
Dmem_cache.cc67 MemoryCache::MemoryCache() : cwd_(FLAGS_cache_base_dir) {} in MemoryCache() function in net::MemoryCache
69 MemoryCache::~MemoryCache() { ClearFiles(); } in ~MemoryCache()
71 void MemoryCache::CloneFrom(const MemoryCache& mc) { in CloneFrom()
78 void MemoryCache::AddFiles() { in AddFiles()
121 void MemoryCache::ReadToString(const char* filename, std::string* output) { in ReadToString()
137 void MemoryCache::ReadAndStoreFileContents(const char* filename) { in ReadAndStoreFileContents()
205 FileData* MemoryCache::GetFileData(const std::string& filename) { in GetFileData()
219 bool MemoryCache::AssignFileData(const std::string& filename, in AssignFileData()
229 void MemoryCache::InsertFile(const BalsaHeaders* headers, in InsertFile()
235 void MemoryCache::InsertFile(FileData* file_data) { in InsertFile()
[all …]
Dsm_connection.h26 class MemoryCache; variable
51 MemoryCache* memory_cache,
62 MemoryCache* memory_cache() { return memory_cache_; } in memory_cache()
126 MemoryCache* memory_cache,
143 MemoryCache* memory_cache_;
Dacceptor_thread.h23 class MemoryCache; variable
49 SMAcceptorThread(FlipAcceptor* acceptor, MemoryCache* memory_cache);
92 MemoryCache* memory_cache_;
Dmem_cache.h112 class MemoryCache {
117 MemoryCache();
118 virtual ~MemoryCache();
120 void CloneFrom(const MemoryCache& mc);
Dhttp_interface.h23 class MemoryCache; variable
29 MemoryCache* memory_cache,
136 MemoryCache* memory_cache_;
Dspdy_interface.h25 class MemoryCache; variable
32 MemoryCache* memory_cache,
210 MemoryCache* memory_cache_;
Dflip_in_mem_edsm_server.cc329 net::MemoryCache spdy_memory_cache; in main()
355 net::MemoryCache http_memory_cache; in main()
386 acceptor, (net::MemoryCache*)acceptor->memory_cache_)); in main()
Dmem_cache_test.cc14 class MemoryCacheWithFakeReadToString : public MemoryCache {
Dhttp_interface_test.cc33 MemoryCache* memory_cache, in MockSMConnection()
59 memory_cache_.reset(new MemoryCache); in FlipHttpSMTest()
104 scoped_ptr<MemoryCache> memory_cache_;
/external/chromium_org/third_party/WebKit/Source/web/
DWebCache.cpp40 static void ToResourceTypeStat(const MemoryCache::TypeStatistic& from, in ToResourceTypeStat()
52 MemoryCache* cache = memoryCache(); in setCapacities()
59 MemoryCache* cache = memoryCache(); in clear()
68 MemoryCache* cache = memoryCache(); in getUsageStats()
81 MemoryCache* cache = memoryCache(); in getResourceTypeStats()
83 MemoryCache::Statistics stats = cache->getStatistics(); in getResourceTypeStats()
/external/lldb/source/Target/
DMemory.cpp26 MemoryCache::MemoryCache(Process &process) : in MemoryCache() function in MemoryCache
38 MemoryCache::~MemoryCache() in ~MemoryCache()
43 MemoryCache::Clear(bool clear_invalid_ranges) in Clear()
52 MemoryCache::Flush (addr_t addr, size_t size) in Flush()
85 MemoryCache::AddInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size) in AddInvalidRange()
97 MemoryCache::RemoveInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size) in RemoveInvalidRange()
116 MemoryCache::Read (addr_t addr, in Read()
/external/lldb/include/lldb/Target/
DMemory.h30 class MemoryCache
36 MemoryCache (Process &process);
38 ~MemoryCache ();
76 DISALLOW_COPY_AND_ASSIGN (MemoryCache);
/external/glide/library/src/main/java/com/bumptech/glide/
DGlideBuilder.java14 import com.bumptech.glide.load.engine.cache.MemoryCache;
27 private MemoryCache memoryCache;
46 public GlideBuilder setMemoryCache(MemoryCache memoryCache) { in setMemoryCache()
DGlide.java21 import com.bumptech.glide.load.engine.cache.MemoryCache;
87 private final MemoryCache memoryCache;
173 Glide(Engine engine, RequestQueue requestQueue, MemoryCache memoryCache, BitmapPool bitmapPool, in Glide()
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DEngine.java16 import com.bumptech.glide.load.engine.cache.MemoryCache;
28 public class Engine implements EngineJobListener, MemoryCache.ResourceRemovedListener, Resource.Res…
33 private final MemoryCache cache;
51 public Engine(MemoryCache memoryCache, DiskCache diskCache, ExecutorService resizeService, in Engine()
56 …Engine(ResourceRunnerFactory factory, MemoryCache cache, DiskCache diskCache, ExecutorService resi… in Engine()
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DMemoryCache.java10 public interface MemoryCache { interface
DMemoryCacheAdapter.java6 public class MemoryCacheAdapter implements MemoryCache {
DLruResourceCache.java10 public class LruResourceCache extends LruCache<Key, Resource> implements MemoryCache {
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDOMURL.cpp93 MemoryCache::removeURLFromCache(executionContext, url); in revokeObjectURL()
/external/chromium_org/third_party/WebKit/Source/core/html/
DPublicURLManager.cpp82 MemoryCache::removeURLFromCache(executionContext(), url); in revoke()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DImageBitmapTest.cpp64 m_globalMemoryCache = replaceMemoryCacheForTesting(MemoryCache::create()); in SetUp()
77 OwnPtrWillBePersistent<MemoryCache> m_globalMemoryCache;

12