Home
last modified time | relevance | path

Searched refs:CONTENT_LEN (Results 1 – 5 of 5) sorted by relevance

/external/apache-http/src/org/apache/http/protocol/
DRequestContent.java69 if (request.containsHeader(HTTP.CONTENT_LEN)) { in process()
75 request.addHeader(HTTP.CONTENT_LEN, "0"); in process()
86 request.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength())); in process()
DResponseContent.java69 if (response.containsHeader(HTTP.CONTENT_LEN)) { in process()
79 response.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength())); in process()
96 response.addHeader(HTTP.CONTENT_LEN, "0"); in process()
DHTTP.java52 public static final String CONTENT_LEN = "Content-Length"; field in HTTP
/external/apache-http/src/org/apache/http/impl/entity/
DLaxContentLengthStrategy.java196 Header contentLengthHeader = message.getFirstHeader(HTTP.CONTENT_LEN); in determineLength()
234 Header[] headers = message.getHeaders(HTTP.CONTENT_LEN); in determineLength()
DStrictContentLengthStrategy.java191 Header contentLengthHeader = message.getFirstHeader(HTTP.CONTENT_LEN); in determineLength()