Home
last modified time | relevance | path

Searched refs:isChunked (Results 1 – 9 of 9) sorted by relevance

/external/apache-http/src/org/apache/http/entity/
DHttpEntityWrapper.java78 public boolean isChunked() { in isChunked() method in HttpEntityWrapper
79 return wrappedEntity.isChunked(); in isChunked()
DBufferedHttpEntity.java89 public boolean isChunked() { in isChunked() method in BufferedHttpEntity
90 return (buffer == null) && wrappedEntity.isChunked(); in isChunked()
DAbstractHttpEntity.java116 public boolean isChunked() { in isChunked() method in AbstractHttpEntity
/external/apache-http/src/org/apache/commons/codec/binary/
DBase64.java232 public static byte[] encodeBase64(byte[] binaryData, boolean isChunked) { in encodeBase64() argument
251 if (isChunked) { in encodeBase64()
300 if (isChunked) { in encodeBase64()
351 if (isChunked) { in encodeBase64()
/external/apache-http/src/org/apache/http/
DHttpEntity.java96 boolean isChunked(); in isChunked() method
/external/apache-http/src/org/apache/http/protocol/
DRequestContent.java79 if (entity.isChunked() || entity.getContentLength() < 0) { in process()
DResponseConnControl.java88 (!entity.isChunked() || ver.lessEquals(HttpVersion.HTTP_1_0))) { in process()
DResponseContent.java76 if (entity.isChunked() && !ver.lessEquals(HttpVersion.HTTP_1_0)) { in process()
/external/apache-http/src/org/apache/http/impl/
DDefaultConnectionReuseStrategy.java102 if (!entity.isChunked() || in keepAlive()