HomeSort by relevance Sort by last modified time
    Searched full:chunked (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/apache-http/src/org/apache/http/entity/
AbstractHttpEntity.java 69 * The 'chunked' flag.
73 protected boolean chunked; field in class:AbstractHttpEntity
110 * Obtains the 'chunked' flag.
112 * {@link #chunked chunked} attribute.
114 * @return the 'chunked' flag
117 return this.chunked;
180 * Specifies the 'chunked' flag.
182 * {@link #chunked chunked} attribute
    [all...]
ContentLengthStrategy.java 50 public static final int CHUNKED = -2;
  /external/apache-http/src/org/apache/http/impl/entity/
StrictContentLengthStrategy.java 67 * than "identity", then the transfer-length is defined by use of the "chunked" transfer-
107 * <p>All HTTP/1.1 applications that receive entities MUST accept the "chunked" transfer-coding
119 * transfer-coding = "chunked" | transfer-extension
136 * include "chunked", unless the message is terminated by closing the connection. When the
137 * "chunked" transfer-coding is used, it MUST be the last transfer-coding applied to the
138 * message-body. The "chunked" transfer-coding MUST NOT be applied more than once to a
188 // it is either missing or has the single value "chunked". So we
197 "Chunked transfer encoding not allowed for " +
200 return CHUNKED;
LaxContentLengthStrategy.java 71 * than "identity", then the transfer-length is defined by use of the "chunked" transfer-
111 * <p>All HTTP/1.1 applications that receive entities MUST accept the "chunked" transfer-coding
123 * transfer-coding = "chunked" | transfer-extension
140 * include "chunked", unless the message is terminated by closing the connection. When the
141 * "chunked" transfer-coding is used, it MUST be the last transfer-coding applied to the
142 * message-body. The "chunked" transfer-coding MUST NOT be applied more than once to a
219 // The chunked encoding must be the last one applied RFC2616, 14.41
225 return CHUNKED;
EntityDeserializer.java 51 * This entity deserializer currently supports only "chunked" and "identitiy" transfer-coding</a>
78 if (len == ContentLengthStrategy.CHUNKED) {
EntitySerializer.java 49 * This entity serializer currently supports only "chunked" and "identitiy" transfer-coding</a>
74 if (len == ContentLengthStrategy.CHUNKED) {
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
httpread.c 26 * -- transfer encoding other than chunked
38 * HTTP/1.1, especially chunked data.
88 int chunked; /* nonzero for chunked data */ member in struct:httpread
98 /* The following apply if data is chunked: */
102 int in_trailer; /* in header fields after data (chunked only)*/
216 * other than chunked...
218 if (word_eq(hbp, "CHUNKED")) {
219 h->chunked = 1;
348 /* chunked overrides content-length always *
    [all...]
  /external/chromium/net/http/
http_chunked_decoder.h 48 // From RFC2617 section 3.6.1, the chunked transfer coding is defined as:
50 // Chunked-Body = *chunk
66 // chunk. The chunked encoding is ended by any chunk whose size is zero,
http_stream.h 69 // the response headers indicate either chunked encoding or content length.
  /frameworks/base/core/tests/utillib/src/coretestutils/http/
MockResponse.java 135 * Sets the body as chunked.
137 * Currently chunked body is not supported for external files as bodies.
140 addHeader("Transfer-encoding", "chunked");
MockWebServer.java 217 boolean chunked = false;
226 lowercaseHeader.substring(18).trim().equals("chunked")) {
227 chunked = true;
237 } else if (chunked) {
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 46 * Implements chunked transfer coding.
49 * It transparently coalesces chunks of a HTTP stream that uses chunked
106 * <p> Returns all the data in a chunked stream in coalesced form. A chunk
223 "Chunked stream ended unexpectedly");
253 * Upon close, this reads the remainder of the chunked message,
package.html 43 in particular the chunked encoding for
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 77 /* If set, this will cause response data to be sent in 'chunked' format */
78 boolean chunked = false; field in class:Support_TestWebServer
182 * Call this to indicate whether chunked data should be used
187 chunked = value;
192 * the "chunked" transfer encoding.
619 // TODO handle chunked encoding from the client
782 if (chunked) {
783 psPrint(ps, "Transfer-Encoding: chunked");
806 if (chunked) {
807 psPrint(ps, "Transfer-Encoding: chunked");
    [all...]
  /external/apache-http/src/org/apache/http/
HttpEntity.java 84 * Tells about chunked encoding for this entity.
86 * chunked encoding should be used when the entity is sent.
88 * the entity was received with chunked encoding.
93 * @return <code>true</code> if chunked encoding is preferred for this
MalformedChunkCodingException.java 37 * Signals a malformed chunked stream.
  /external/bzip2/
bzip.css 59 /* don't have underlined links in chunked nav menus */
  /external/chromium/net/tools/flip_server/
balsa_enums.h 69 // Warning: there may be a body but there was no content-length/chunked
  /libcore/support/src/test/java/tests/http/
MockWebServer.java 297 boolean chunked = false;
306 lowercaseHeader.substring(18).trim().equals("chunked")) {
307 chunked = true;
317 } else if (chunked) {
  /packages/providers/DownloadProvider/tests/src/tests/http/
MockWebServer.java 199 boolean chunked = false;
208 lowercaseHeader.substring(18).trim().equals("chunked")) {
209 chunked = true;
219 } else if (chunked) {
  /libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java 233 doUpload(TransferKind.CHUNKED, WriteKind.BYTE_BY_BYTE);
237 doUpload(TransferKind.CHUNKED, WriteKind.SMALL_BUFFERS);
241 doUpload(TransferKind.CHUNKED, WriteKind.LARGE_BUFFERS);
265 if (uploadKind == TransferKind.CHUNKED) {
286 if (uploadKind == TransferKind.CHUNKED) {
534 mockResponse.addHeader("Transfer-encoding: chunked");
663 testResponseCaching(TransferKind.CHUNKED);
758 testServerPrematureDisconnect(TransferKind.CHUNKED);
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 84 /* If set, this will cause response data to be sent in 'chunked' format */
85 boolean chunked = false; field in class:TestWebServer
174 * Call this to indicate whether chunked data should be used
179 chunked = value;
660 // TODO handle chunked encoding from the client
813 if (chunked) {
814 psPrint(ps, "Transfer-Encoding: chunked");
858 if (chunked) {
  /external/chromium/third_party/libevent/
evhttp.h 160 /* Low-level response interface, for streaming/chunked replies */
224 int chunked; member in struct:evhttp_request
233 * Chunked data callback - call for each completed chunk if
http-internal.h 47 EVCON_READING_TRAILER, /**< reading request/response chunked trailer */
  /frameworks/base/media/libstagefright/
NuHTTPDataSource.cpp 212 // chunked.
214 if (!strcasecmp(value.c_str(), "chunked")) {
215 LOGI("Chunked transfer encoding applied.");

Completed in 1109 milliseconds

1 2 3 4