Searched defs:cacheKey (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardStatusView.java216 static String cacheKey; field in class:KeyguardStatusView.Patterns
227 if (key.equals(cacheKey)) return;
244 cacheKey = key;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DResourceHelper.java267 boolean isFramework, String cacheKey, BridgeContext context) throws IOException {
269 NinePatchChunk chunk = Bridge.getCached9Patch(cacheKey,
271 Bitmap bitmap = Bridge.getCachedBitmap(cacheKey,
283 Bridge.setCached9Patch(cacheKey, chunk,
292 Bridge.setCachedBitmap(cacheKey, bitmap,
266 getNinePatchDrawable(InputStream inputStream, Density density, boolean isFramework, String cacheKey, BridgeContext context) argument
/frameworks/volley/tests/src/com/android/volley/mock/
H A DMockRequest.java51 public void setCacheKey(String cacheKey) { argument
52 mCacheKey = cacheKey;
/frameworks/volley/src/com/android/volley/toolbox/
H A DImageLoader.java156 String cacheKey = getCacheKey(requestUrl, maxWidth, maxHeight);
157 return mCache.getBitmap(cacheKey) != null;
191 final String cacheKey = getCacheKey(requestUrl, maxWidth, maxHeight);
194 Bitmap cachedBitmap = mCache.getBitmap(cacheKey);
204 new ImageContainer(null, requestUrl, cacheKey, imageListener);
210 BatchedImageRequest request = mInFlightRequests.get(cacheKey);
223 onGetImageSuccess(cacheKey, response);
229 onGetImageError(cacheKey, error);
234 mInFlightRequests.put(cacheKey,
250 * @param cacheKey Th
253 onGetImageSuccess(String cacheKey, Bitmap response) argument
273 onGetImageError(String cacheKey, VolleyError error) argument
311 ImageContainer(Bitmap bitmap, String requestUrl, String cacheKey, ImageListener listener) argument
431 batchResponse(String cacheKey, BatchedImageRequest request) argument
[all...]

Completed in 1069 milliseconds