/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
httpzlib.py | 33 The returned chunks may be used with HTTP chunked encoding.
|
httpclient.py | 124 [response_body] # non-chunked responses 125 [chunk_1, chunk_2, ...] # chunked responses 127 [0] # non-chunked responses 128 [chunk_1_first_byte_delay, ...] # chunked responses 135 if not self.chunked:
|
/external/curl/lib/ |
http_chunks.h | 25 * The longest possible hexadecimal number we support in a chunked transfer.
|
http_chunks.c | 48 The chunked encoding modifies the body of a message in order to 55 Chunked-Body = *chunk 72 the chunk. The chunked encoding is ended by any chunk whose size is
|
/external/curl/tests/data/ |
test579 | 68 small chunked HTTP POSTs with digest auth. and progress callback
|
/prebuilts/go/darwin-x86/src/net/http/httputil/ |
dump.go | 209 chunked := len(req.TransferEncoding) > 0 && req.TransferEncoding[0] == "chunked" 226 if chunked { 230 if chunked {
|
/prebuilts/go/darwin-x86/src/net/http/ |
response.go | 57 // with a "chunked" Transfer-Encoding. 252 // If we're sending a non-chunked HTTP/1.1 response without a 256 if r1.ContentLength == -1 && !r1.Close && r1.ProtoAtLeast(1, 1) && !chunked(r1.TransferEncoding) { 279 if r1.ContentLength == 0 && !chunked(r1.TransferEncoding) && !contentLengthAlreadySent {
|
transfer_test.go | 43 "Transfer-Encoding: chunked\r\n"+
|
/prebuilts/go/linux-x86/src/net/http/httputil/ |
dump.go | 209 chunked := len(req.TransferEncoding) > 0 && req.TransferEncoding[0] == "chunked" 226 if chunked { 230 if chunked {
|
/prebuilts/go/linux-x86/src/net/http/ |
response.go | 57 // with a "chunked" Transfer-Encoding. 252 // If we're sending a non-chunked HTTP/1.1 response without a 256 if r1.ContentLength == -1 && !r1.Close && r1.ProtoAtLeast(1, 1) && !chunked(r1.TransferEncoding) { 279 if r1.ContentLength == 0 && !chunked(r1.TransferEncoding) && !contentLengthAlreadySent {
|
transfer_test.go | 43 "Transfer-Encoding: chunked\r\n"+
|
/external/apache-http/src/org/apache/http/impl/entity/ |
EntityDeserializer.java | 51 * This entity deserializer currently supports only "chunked" and "identitiy" transfer-coding</a> 83 if (len == ContentLengthStrategy.CHUNKED) {
|
EntitySerializer.java | 49 * This entity serializer currently supports only "chunked" and "identitiy" transfer-coding</a> 79 if (len == ContentLengthStrategy.CHUNKED) {
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
URLConnectionTest.java | 292 testRequestBodySurvivesRetries(TransferKind.CHUNKED); 429 doUpload(TransferKind.CHUNKED, WriteKind.BYTE_BY_BYTE); 433 doUpload(TransferKind.CHUNKED, WriteKind.SMALL_BUFFERS); 437 doUpload(TransferKind.CHUNKED, WriteKind.LARGE_BUFFERS); 460 if (uploadKind == TransferKind.CHUNKED) { 481 if (uploadKind == TransferKind.CHUNKED) { 773 mockResponse.addHeader("Transfer-encoding: chunked"); 790 mockResponse.addHeader("Transfer-encoding: chunked"); [all...] |
/external/webrtc/webrtc/base/ |
httpclient.h | 151 HttpError OnHeaderAvailable(bool ignore_data, bool chunked, size_t data_size); 157 HttpError onHttpHeaderComplete(bool chunked, size_t& data_size) override;
|
httpserver.h | 92 HttpError onHttpHeaderComplete(bool chunked, size_t& data_size) override;
|
/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/apache-http/src/org/apache/http/ |
MalformedChunkCodingException.java | 37 * Signals a malformed chunked stream.
|
/external/apache-http/src/org/apache/http/entity/ |
ContentLengthStrategy.java | 55 public static final int CHUNKED = -2;
|
/external/curl/tests/libtest/ |
lib547.c | 111 /* We CANNOT do the POST fine without setting the size (or choose chunked)! */
|
lib555.c | 99 /* We CANNOT do the POST fine without setting the size (or choose chunked)! */
|
/external/guava/guava/src/com/google/common/hash/ |
Hasher.java | 36 * they were inserted, not how those bytes were chunked into discrete put() operations. For example,
|
/external/libevent/ |
http-internal.h | 55 EVCON_READING_TRAILER, /**< reading request/response chunked trailer */
|
/external/nanohttpd/core/src/test/java/fi/iki/elonen/ |
HttpChunkedResponseTest.java | 77 "Transfer-Encoding: chunked",
|
/libcore/support/src/test/java/tests/http/ |
MockResponse.java | 32 private static final String CHUNKED_BODY_HEADER = "Transfer-encoding: chunked";
|