Home | History | Annotate | Download | only in cts

Lines Matching refs:responseHeaders

86         Response(byte[] responseData, List<Pair<String, String>> responseHeaders,
91 mResponseHeaders = responseHeaders == null ?
92 new ArrayList<Pair<String, String>>() : responseHeaders;
178 List<Pair<String, String>> responseHeaders, Runnable responseAction,
185 responseData, responseHeaders, isRedirect, isNotFound, responseAction));
223 * @param responseHeaders Any additional headers that should be returned along with the
230 List<Pair<String, String>> responseHeaders) {
231 return setResponseInternal(requestPath, responseString.getBytes(), responseHeaders, null,
242 * @param responseHeaders Any additional headers that should be returned along with the
251 String requestPath, String responseString, List<Pair<String, String>> responseHeaders,
254 requestPath, responseString.getBytes(), responseHeaders, responseAction,
268 List<Pair<String, String>> responseHeaders = new ArrayList<Pair<String, String>>();
269 responseHeaders.add(Pair.create("Location", targetPath));
271 return setResponseInternal(requestPath, targetPath.getBytes(), responseHeaders, null,
282 * @param responseHeaders Any additional headers that should be returned along with the
289 List<Pair<String, String>> responseHeaders) {
292 responseHeaders, null, RESPONSE_STATUS_NORMAL);