Lines Matching refs:mHttpDiskCache
49 private DiskLruCache mHttpDiskCache;
96 mHttpDiskCache = DiskLruCache.open(mHttpCacheDir, 1, 1, HTTP_CACHE_SIZE);
101 mHttpDiskCache = null;
113 if (mHttpDiskCache != null && !mHttpDiskCache.isClosed()) {
115 mHttpDiskCache.delete();
122 mHttpDiskCache = null;
133 if (mHttpDiskCache != null) {
135 mHttpDiskCache.flush();
150 if (mHttpDiskCache != null) {
152 if (!mHttpDiskCache.isClosed()) {
153 mHttpDiskCache.close();
154 mHttpDiskCache = null;
205 if (mHttpDiskCache != null) {
207 snapshot = mHttpDiskCache.get(key);
212 DiskLruCache.Editor editor = mHttpDiskCache.edit(key);
221 snapshot = mHttpDiskCache.get(key);