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

/frameworks/support/volley/src/com/android/volley/
H A DResponse.java42 public static <T> Response<T> success(T result, Cache.Entry cacheEntry) { argument
43 return new Response<T>(result, cacheEntry);
58 public final Cache.Entry cacheEntry; field in class:Response
74 private Response(T result, Cache.Entry cacheEntry) { argument
76 this.cacheEntry = cacheEntry;
82 this.cacheEntry = null;

Completed in 34 milliseconds