Home
last modified time | relevance | path

Searched refs:getCacheKey (Results 1 – 12 of 12) sorted by relevance

/external/volley/src/test/java/com/android/volley/
DRequestTest.java105 public void getCacheKey() {
108 new UrlParseRequest(Method.GET, "http://example.com").getCacheKey());
112 .getCacheKey());
115 new UrlParseRequest(Method.POST, "http://example.com").getCacheKey());
118 new UrlParseRequest(Method.PUT, "http://example.com").getCacheKey());
DNetworkDispatcherTest.java143 verify(mCache).put(eq(mRequest.getCacheKey()), entry.capture()); in shouldCacheTrue()
DCacheDispatcherTest.java149 when(request.getCacheKey()).thenReturn("cache/key"); in freshCacheHit_parseError()
/external/volley/src/main/java/com/android/volley/
DWaitingRequestManager.java89 String cacheKey = request.getCacheKey(); in onResponseReceived()
110 String cacheKey = request.getCacheKey(); in onNoUsableResponseReceived()
149 String cacheKey = request.getCacheKey(); in maybeAddToWaitingRequests()
DCacheDispatcher.java131 Cache.Entry entry = mCache.get(request.getCacheKey()); in processRequest()
160 mCache.invalidate(request.getCacheKey(), true); in processRequest()
DAsyncRequestQueue.java208 mRequest.getCacheKey(), in run()
216 Entry entry = getCache().get(mRequest.getCacheKey()); in run()
412 mRequest.getCacheKey(), in run()
421 getCache().put(mRequest.getCacheKey(), response.cacheEntry); in run()
DNetworkDispatcher.java150 mCache.put(request.getCacheKey(), response.cacheEntry); in processRequest()
DRequest.java298 public String getCacheKey() { in getCacheKey() method in Request
/external/volley/src/test/java/com/android/volley/mock/
DMockRequest.java48 private String mCacheKey = super.getCacheKey();
55 public String getCacheKey() { in getCacheKey() method in MockRequest
/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/
DRepresentation.java172 public abstract String getCacheKey(); in getCacheKey() method in Representation
266 public String getCacheKey() { in getCacheKey() method in Representation.SingleSegmentRepresentation
310 public String getCacheKey() { in getCacheKey() method in Representation.MultiSegmentRepresentation
/external/volley/src/main/java/com/android/volley/toolbox/
DImageLoader.java172 String cacheKey = getCacheKey(requestUrl, maxWidth, maxHeight, scaleType);
224 final String cacheKey = getCacheKey(requestUrl, maxWidth, maxHeight, scaleType);
529 private static String getCacheKey(
/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashUtil.java60 .setKey(representation.getCacheKey()) in buildDataSpec()