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

1 2

  /external/compiler-rt/lib/tsan/tests/unit/
tsan_clock_test.cc 39 SyncClock chunked; local
41 CHECK_EQ(chunked.size(), 0);
42 vector.acquire(&chunked);
44 CHECK_EQ(chunked.size(), 0);
45 vector.release(&chunked);
47 CHECK_EQ(chunked.size(), 0);
48 vector.acq_rel(&chunked);
50 CHECK_EQ(chunked.size(), 0);
57 SyncClock chunked; local
58 vector1.release(&chunked);
71 SyncClock chunked; local
95 SyncClock chunked; local
102 SyncClock chunked; local
109 SyncClock chunked; local
115 SyncClock chunked; local
    [all...]
  /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...]
  /external/chromium/third_party/libjingle/source/talk/base/
httpbase.h 71 virtual ProcessResult ProcessHeaderComplete(bool chunked, size_t& data_size,
96 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size) = 0;
173 virtual ProcessResult ProcessHeaderComplete(bool chunked, size_t& data_size,
httpclient.h 173 HttpError OnHeaderAvailable(bool ignore_data, bool chunked, size_t data_size);
176 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size);
httpclient.cc 334 // Exact size must be known on the client. Instead of using chunked
634 HttpError HttpClient::OnHeaderAvailable(bool ignore_data, bool chunked,
641 if (!ignore_data && !chunked && (data_size != SIZE_UNKNOWN)
655 HttpError HttpClient::onHttpHeaderComplete(bool chunked, size_t& data_size) {
678 HttpError error = OnHeaderAvailable(base_.ignore_data(), chunked, data_size);
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpbase.h 71 virtual ProcessResult ProcessHeaderComplete(bool chunked, size_t& data_size,
96 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size) = 0;
173 virtual ProcessResult ProcessHeaderComplete(bool chunked, size_t& data_size,
httpbase_unittest.cc 39 "Transfer-Encoding: chunked\r\n"
57 "Transfer-Encoding: chunked\r\n"
67 bool chunked; member in struct:talk_base::HttpBaseTest::Event
81 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size) {
82 LOG_F(LS_VERBOSE) << "chunked: " << chunked << " size: " << data_size;
83 Event e = { E_HEADER_COMPLETE, chunked, data_size, HM_NONE, HE_NONE};
170 EXPECT_FALSE(events[0].chunked);
176 EXPECT_TRUE(events[0].chunked);
182 EXPECT_EQ("chunked", header)
    [all...]
httpclient.h 175 HttpError OnHeaderAvailable(bool ignore_data, bool chunked, size_t data_size);
181 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size);
httpserver.h 109 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size);
httpclient.cc 364 // Exact size must be known on the client. Instead of using chunked
668 HttpError HttpClient::OnHeaderAvailable(bool ignore_data, bool chunked,
675 if (!ignore_data && !chunked && (data_size != SIZE_UNKNOWN)
689 HttpError HttpClient::onHttpHeaderComplete(bool chunked, size_t& data_size) {
712 HttpError error = OnHeaderAvailable(base_.ignore_data(), chunked, data_size);
httpserver.cc 194 HttpServer::Connection::onHttpHeaderComplete(bool chunked, size_t& data_size) {
  /external/wpa_supplicant_8/src/wps/
httpread.c 20 * -- transfer encoding other than chunked
32 * HTTP/1.1, especially chunked data.
82 int chunked; /* nonzero for chunked data */ member in struct:httpread
92 /* The following apply if data is chunked: */
96 int in_trailer; /* in header fields after data (chunked only)*/
210 * other than chunked...
212 if (word_eq(hbp, "CHUNKED")) {
213 h->chunked = 1;
342 /* chunked overrides content-length always *
    [all...]
  /external/chromium_org/net/base/
upload_data_stream.h 24 // An enum used to construct chunked data stream.
25 enum Chunked { CHUNKED };
27 // Constructs a non-chunked data stream.
32 // Constructs a chunked data stream.
33 UploadDataStream(Chunked chunked, int64 identifier);
76 // for example, if the file is truncated. When the data is chunked, size()
95 // Adds the given chunk of bytes to be sent with chunked transfer encoding.
134 // |total_size_| is set to zero when the data is chunked
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServer.java 220 boolean authenticated = false, contentLength = false, chunked = false;
247 if (chunked) {
251 chunked = true;
253 if ("chunked".equals(encoding)) {
260 if (contentLength && chunked) {
318 // send 5 bytes of chunked data
322 print(os, "Transfer-Encoding: chunked\r\n");
330 .println("Error performing chunked transfer coding test.");
454 // read chunked-encoding data
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpTransport.java 62 boolean chunked = httpEngine.requestHeaders.isChunked();
63 if (!chunked
67 chunked = true;
71 if (chunked) {
  /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
152 * Call this to indicate whether chunked data should be used
157 chunked = value;
162 * the "chunked" transfer encoding.
589 // TODO handle chunked encoding from the client
752 if (chunked) {
753 psPrint(ps, "Transfer-Encoding: chunked");
776 if (chunked) {
777 psPrint(ps, "Transfer-Encoding: chunked");
    [all...]
  /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
  /external/chromium_org/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
  /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) {
SSLSocketTest.java 114 boolean chunked = false;
134 chunked = "Chunked".equalsIgnoreCase(value);
141 assertTrue("Need either content length or chunked encoding", length != -1
142 || chunked);
145 if (chunked) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
httplib.py 358 self.chunked = _UNKNOWN # is "chunked" being used?
436 self.chunked = 0
449 # are we using the chunked-style of transfer encoding?
451 if tr_enc and tr_enc.lower() == "chunked":
452 self.chunked = 1
455 self.chunked = 0
461 # NOTE: RFC 2616, S4.4, #3 says we ignore this if tr_enc is "chunked"
463 if length and not self.chunked:
480 # if the connection remains open, and we aren't using chunked, an
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
httplib.py 358 self.chunked = _UNKNOWN # is "chunked" being used?
436 self.chunked = 0
449 # are we using the chunked-style of transfer encoding?
451 if tr_enc and tr_enc.lower() == "chunked":
452 self.chunked = 1
455 self.chunked = 0
461 # NOTE: RFC 2616, S4.4, #3 says we ignore this if tr_enc is "chunked"
463 if length and not self.chunked:
480 # if the connection remains open, and we aren't using chunked, an
    [all...]
  /libcore/support/src/test/java/tests/http/
MockWebServer.java 345 boolean chunked = false;
354 lowercaseHeader.substring(18).trim().equals("chunked")) {
355 chunked = true;
365 } else if (chunked) {
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockWebServer.java 404 boolean chunked = false;
413 lowercaseHeader.substring(18).trim().equals("chunked")) {
414 chunked = true;
424 } else if (chunked) {
  /external/chromium/webkit/glue/media/
buffered_resource_loader_unittest.cc 138 int64 instance_size, bool chunked, bool accept_ranges) {
149 // HTTP 1.1 doesn't permit Content-Length with Transfer-Encoding: chunked.
151 if (chunked) {
153 WebString::fromUTF8("chunked"));
168 // XXX: what's the difference between these two? For example in the chunked
169 // range request case, Content-Length is unspecified (because it's chunked)

Completed in 848 milliseconds

1 2