HomeSort by relevance Sort by last modified time
    Searched refs:ContentLengthStrategy (Results 1 - 7 of 7) sorted by null

  /external/apache-http/src/org/apache/http/entity/
ContentLengthStrategy.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/entity/ContentLengthStrategy.java $
52 public interface ContentLengthStrategy {
  /external/apache-http/src/org/apache/http/impl/entity/
EntitySerializer.java 40 import org.apache.http.entity.ContentLengthStrategy;
65 private final ContentLengthStrategy lenStrategy;
67 public EntitySerializer(final ContentLengthStrategy lenStrategy) {
79 if (len == ContentLengthStrategy.CHUNKED) {
81 } else if (len == ContentLengthStrategy.IDENTITY) {
EntityDeserializer.java 41 import org.apache.http.entity.ContentLengthStrategy;
67 private final ContentLengthStrategy lenStrategy;
69 public EntityDeserializer(final ContentLengthStrategy lenStrategy) {
83 if (len == ContentLengthStrategy.CHUNKED) {
87 } else if (len == ContentLengthStrategy.IDENTITY) {
StrictContentLengthStrategy.java 39 import org.apache.http.entity.ContentLengthStrategy;
182 public class StrictContentLengthStrategy implements ContentLengthStrategy {
LaxContentLengthStrategy.java 40 import org.apache.http.entity.ContentLengthStrategy;
186 public class LaxContentLengthStrategy implements ContentLengthStrategy {
  /external/apache-http/android/src/android/net/http/
AndroidHttpClientConnection.java 31 import org.apache.http.entity.ContentLengthStrategy;
384 if (len == ContentLengthStrategy.CHUNKED) {
388 } else if (len == ContentLengthStrategy.IDENTITY) {
421 return ContentLengthStrategy.IDENTITY;
Headers.java 24 import org.apache.http.entity.ContentLengthStrategy;
185 transferEncoding = ContentLengthStrategy.IDENTITY;
189 transferEncoding = ContentLengthStrategy.CHUNKED;
191 transferEncoding = ContentLengthStrategy.IDENTITY;

Completed in 1030 milliseconds