Home
last modified time | relevance | path

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

/external/sl4a/Common/src/org/apache/commons/codec/binary/
DBase64Codec.java765 public static byte[] encodeBase64(byte[] binaryData, boolean isChunked) { in encodeBase64() argument
766 return encodeBase64(binaryData, isChunked, false); in encodeBase64()
783 public static byte[] encodeBase64(byte[] binaryData, boolean isChunked, boolean urlSafe) { in encodeBase64() argument
784 return encodeBase64(binaryData, isChunked, urlSafe, Integer.MAX_VALUE); in encodeBase64()
803 …public static byte[] encodeBase64(byte[] binaryData, boolean isChunked, boolean urlSafe, int maxRe… in encodeBase64() argument
816 …Base64Codec b64 = isChunked ? new Base64Codec(urlSafe) : new Base64Codec(0, CHUNK_SEPARATOR, urlSa… in encodeBase64()
/external/apache-http/src/org/apache/http/entity/
DHttpEntityWrapper.java83 public boolean isChunked() { in isChunked() method in HttpEntityWrapper
84 return wrappedEntity.isChunked(); in isChunked()
DBufferedHttpEntity.java94 public boolean isChunked() { in isChunked() method in BufferedHttpEntity
95 return (buffer == null) && wrappedEntity.isChunked(); in isChunked()
DAbstractHttpEntity.java121 public boolean isChunked() { in isChunked() method in AbstractHttpEntity
/external/apache-http/src/org/apache/commons/codec/binary/
DBase64.java237 public static byte[] encodeBase64(byte[] binaryData, boolean isChunked) { in encodeBase64() argument
256 if (isChunked) { in encodeBase64()
305 if (isChunked) { in encodeBase64()
356 if (isChunked) { in encodeBase64()
/external/apache-http/src/org/apache/http/
DHttpEntity.java101 boolean isChunked(); in isChunked() method
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
DHttpEntityStub.java18 @Override public boolean isChunked() { in isChunked() method in HttpEntityStub
/external/apache-http/src/org/apache/http/protocol/
DRequestContent.java84 if (entity.isChunked() || entity.getContentLength() < 0) { in process()
DResponseContent.java81 if (entity.isChunked() && !ver.lessEquals(HttpVersion.HTTP_1_0)) { in process()
DResponseConnControl.java93 (!entity.isChunked() || ver.lessEquals(HttpVersion.HTTP_1_0))) { in process()
/external/apache-http/src/org/apache/http/impl/
DDefaultConnectionReuseStrategy.java107 if (!entity.isChunked() || in keepAlive()
/external/apache-http/android/src/android/net/http/
DConnection.java525 if (!entity.isChunked() || ver.lessEquals(HttpVersion.HTTP_1_0)) { in keepAlive()
/external/apache-http/api/
Dapache-http-legacy-current.txt1003 method public abstract boolean isChunked();
2197 method public boolean isChunked();
2273 method public boolean isChunked();