Searched refs:responseHeaders (Results 1 - 7 of 7) sorted by relevance

/frameworks/volley/src/com/android/volley/
H A DCache.java84 public Map<String, String> responseHeaders = Collections.emptyMap(); field in class:Cache.Entry
H A DCacheDispatcher.java120 new NetworkResponse(entry.data, entry.responseHeaders));
/frameworks/volley/src/com/android/volley/toolbox/
H A DBasicNetwork.java88 Map<String, String> responseHeaders = new HashMap<String, String>();
97 responseHeaders = convertHeaders(httpResponse.getAllHeaders());
101 request.getCacheEntry().data, responseHeaders, true);
112 return new NetworkResponse(statusCode, responseContents, responseHeaders, false);
130 responseHeaders, false);
H A DDiskBasedCache.java353 public Map<String, String> responseHeaders; field in class:DiskBasedCache.CacheHeader
369 this.responseHeaders = entry.responseHeaders;
392 entry.responseHeaders = readStringStringMap(is);
406 e.responseHeaders = responseHeaders;
422 writeStringStringMap(responseHeaders, os);
H A DHttpHeaderParser.java99 entry.responseHeaders = headers;
/frameworks/volley/tests/src/com/android/volley/toolbox/
H A DDiskBasedCacheTest.java39 e.responseHeaders = new HashMap<String, String>();
40 e.responseHeaders.put("fruit", "banana");
53 assertEquals(first.responseHeaders, second.responseHeaders);
H A DHttpHeaderParserTest.java64 assertNotNull(entry.responseHeaders);
65 assertEquals(1, entry.responseHeaders.size());
66 assertEquals("42", entry.responseHeaders.get("MyCustomHeader"));

Completed in 78 milliseconds