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

1 2

  /external/compiler-rt/lib/tsan/tests/unit/
tsan_clock_test.cc 38 SyncClock chunked; local
40 ASSERT_EQ(chunked.size(), 0U);
41 vector.acquire(&chunked);
43 ASSERT_EQ(chunked.size(), 0U);
44 vector.release(&chunked);
46 ASSERT_EQ(chunked.size(), 1U);
47 vector.acq_rel(&chunked);
49 ASSERT_EQ(chunked.size(), 1U);
55 SyncClock chunked; local
56 vector1.release(&chunked);
81 SyncClock chunked; local
109 SyncClock chunked; local
116 SyncClock chunked; local
123 SyncClock chunked; local
129 SyncClock chunked; local
    [all...]
  /external/apache-http/src/org/apache/http/entity/
AbstractHttpEntity.java 74 * The 'chunked' flag.
78 protected boolean chunked; field in class:AbstractHttpEntity
115 * Obtains the 'chunked' flag.
117 * {@link #chunked chunked} attribute.
119 * @return the 'chunked' flag
122 return this.chunked;
185 * Specifies the 'chunked' flag.
187 * {@link #chunked chunked} attribute
    [all...]
  /external/chromium_org/third_party/webrtc/base/
httpbase.h 51 virtual ProcessResult ProcessHeaderComplete(bool chunked, size_t& data_size,
76 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size) = 0;
153 virtual ProcessResult ProcessHeaderComplete(bool chunked, size_t& data_size,
httpbase_unittest.cc 22 "Transfer-Encoding: chunked\r\n"
40 "Transfer-Encoding: chunked\r\n"
50 bool chunked; member in struct:rtc::HttpBaseTest::Event
64 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size) {
65 LOG_F(LS_VERBOSE) << "chunked: " << chunked << " size: " << data_size;
66 Event e = { E_HEADER_COMPLETE, chunked, data_size, HM_NONE, HE_NONE};
153 EXPECT_FALSE(events[0].chunked);
159 EXPECT_TRUE(events[0].chunked);
165 EXPECT_EQ("chunked", header)
    [all...]
httpclient.h 158 HttpError OnHeaderAvailable(bool ignore_data, bool chunked, size_t data_size);
164 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size);
httpserver.h 92 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size);
httpclient.cc 347 // Exact size must be known on the client. Instead of using chunked
653 HttpError HttpClient::OnHeaderAvailable(bool ignore_data, bool chunked,
660 if (!ignore_data && !chunked && (data_size != SIZE_UNKNOWN)
674 HttpError HttpClient::onHttpHeaderComplete(bool chunked, size_t& data_size) {
697 HttpError error = OnHeaderAvailable(base_.ignore_data(), chunked, data_size);
httpserver.cc 177 HttpServer::Connection::onHttpHeaderComplete(bool chunked, size_t& data_size) {
httpbase.cc 160 if ((vlen == 7) && (_strnicmp(value, "chunked", 7) == 0)) {
419 && (encoding == "chunked")) {
825 HttpBase::ProcessHeaderComplete(bool chunked, size_t& data_size,
829 *error = notify_->onHttpHeaderComplete(chunked, data_size);
  /external/wpa_supplicant_8/src/wps/
httpread.c 20 * -- transfer encoding other than chunked
32 * HTTP/1.1, especially chunked data.
80 int chunked; /* nonzero for chunked data */ member in struct:httpread
90 /* The following apply if data is chunked: */
94 int in_trailer; /* in header fields after data (chunked only)*/
190 * other than chunked...
192 if (word_eq(hbp, "CHUNKED")) {
193 h->chunked = 1;
321 /* 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.
31 // Constructs a chunked data stream.
32 UploadDataStream(Chunked chunked, int64 identifier);
75 // for example, if the file is truncated. When the data is chunked, size()
94 // Adds the given chunk of bytes to be sent with chunked transfer encoding.
133 // |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/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Benchmark.java 73 /** Don't combine chunked with SPDY_3 or HTTP_2; that's not allowed. */
75 boolean chunked; field in class:Benchmark
146 if (chunked) modifiers.add("chunked");
193 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_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
http.c 772 * Handles reading from a chunked request.
864 if (req->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) {
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 442 boolean chunked = false;
452 && lowercaseHeader.substring(18).trim().equals("chunked")) {
453 chunked = true;
475 } else if (chunked) {
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java 448 boolean chunked = false;
458 && lowercaseHeader.substring(18).trim().equals("chunked")) {
459 chunked = true;
481 } else if (chunked) {
670 List<Integer> chunkSizes = Collections.emptyList(); // No chunked encoding for SPDY.
753 List<Integer> chunkSizes = Collections.emptyList(); // No chunked encoding for SPDY.
  /external/chromium_org/media/blink/
buffered_resource_loader_unittest.cc 148 int64 instance_size, bool chunked, bool accept_ranges) {
159 // HTTP 1.1 doesn't permit Content-Length with Transfer-Encoding: chunked.
161 if (chunked) {
163 WebString::fromUTF8("chunked"));
178 // XXX: what's the difference between these two? For example in the chunked
179 // range request case, Content-Length is unspecified (because it's chunked)
    [all...]
  /external/chromium_org/net/tools/balsa/
balsa_headers.cc 853 const char kChunked[] = "chunked";
854 const base::StringPiece chunked(kChunked, sizeof(kChunked) - 1);
855 AppendHeader(transfer_encoding, chunked);
    [all...]

Completed in 787 milliseconds

1 2