Home
last modified time | relevance | path

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

/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);
DProcess.h3668 MemoryCache m_memory_cache;
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
DBitmapPreFillRunner.java11 import com.bumptech.glide.load.engine.cache.MemoryCache;
57 private final MemoryCache memoryCache;
66 …public BitmapPreFillRunner(BitmapPool bitmapPool, MemoryCache memoryCache, PreFillQueue allocation… in BitmapPreFillRunner()
71 …BitmapPreFillRunner(BitmapPool bitmapPool, MemoryCache memoryCache, PreFillQueue allocationOrder, … in BitmapPreFillRunner()
DBitmapPreFiller.java9 import com.bumptech.glide.load.engine.cache.MemoryCache;
21 private final MemoryCache memoryCache;
28 …public BitmapPreFiller(MemoryCache memoryCache, BitmapPool bitmapPool, DecodeFormat defaultFormat)… in BitmapPreFiller()
/external/glide/library/src/main/java/com/bumptech/glide/
DGlideBuilder.java15 import com.bumptech.glide.load.engine.cache.MemoryCache;
30 private MemoryCache memoryCache;
59 public GlideBuilder setMemoryCache(MemoryCache memoryCache) { in setMemoryCache()
DGlide.java22 import com.bumptech.glide.load.engine.cache.MemoryCache;
89 private final MemoryCache memoryCache;
187 …Glide(Engine engine, MemoryCache memoryCache, BitmapPool bitmapPool, Context context, DecodeFormat… in Glide()
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DEngine.java12 import com.bumptech.glide.load.engine.cache.MemoryCache;
28 public class Engine implements EngineJobListener, MemoryCache.ResourceRemovedListener, EngineResour…
32 private final MemoryCache cache;
56 public Engine(MemoryCache memoryCache, DiskCache diskCache, ExecutorService diskCacheService, in Engine()
62 …Engine(MemoryCache cache, DiskCache diskCache, ExecutorService diskCacheService, ExecutorService s… in Engine()
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DMemoryCache.java9 public interface MemoryCache { interface
DMemoryCacheAdapter.java9 public class MemoryCacheAdapter implements MemoryCache {
DLruResourceCache.java12 public class LruResourceCache extends LruCache<Key, Resource<?>> implements MemoryCache {