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

1 2 3

  /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/compiler-rt/lib/tsan/tests/unit/
tsan_clock_test.cc 41 SyncClock chunked; local
43 ASSERT_EQ(chunked.size(), 0U);
44 vector.acquire(&cache, &chunked);
46 ASSERT_EQ(chunked.size(), 0U);
47 vector.release(&cache, &chunked);
49 ASSERT_EQ(chunked.size(), 1U);
50 vector.acq_rel(&cache, &chunked);
52 ASSERT_EQ(chunked.size(), 1U);
53 chunked.Reset(&cache);
59 SyncClock chunked; local
88 SyncClock chunked; local
118 SyncClock chunked; local
126 SyncClock chunked; local
134 SyncClock chunked; local
141 SyncClock chunked; local
    [all...]
  /external/libevent/include/event2/
http_struct.h 108 unsigned chunked:1, /* a chunked request */ member in struct:evhttp_request
118 * Chunked data callback - call for each completed chunk if
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Benchmark.java 72 /** Don't combine chunked with SPDY_3 or HTTP_2; that's not allowed. */
74 boolean chunked; field in class:Benchmark
145 if (chunked) modifiers.add("chunked");
196 if (chunked) {
  /external/webrtc/webrtc/base/
httpbase_unittest.cc 24 "Transfer-Encoding: chunked\r\n"
42 "Transfer-Encoding: chunked\r\n"
52 bool chunked; member in struct:rtc::HttpBaseTest::Event
66 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size) {
67 LOG_F(LS_VERBOSE) << "chunked: " << chunked << " size: " << data_size;
68 Event e = { E_HEADER_COMPLETE, chunked, data_size, HM_NONE, HE_NONE};
155 EXPECT_FALSE(events[0].chunked);
161 EXPECT_TRUE(events[0].chunked);
167 EXPECT_EQ("chunked", header)
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
transfer.go 26 // with malformed chunked encoding.
106 t.TransferEncoding = []string{"chunked"}
128 if chunked(t.TransferEncoding) {
135 if chunked(t.TransferEncoding) {
143 if !chunked(t.TransferEncoding) {
151 // chunked request body to the server. In particular, the case we really
153 // server with a chunked body when the body has zero bytes, since GETs with
154 // bodies (while acceptable according to specs), even zero-byte chunked
183 // can deal with a chunked request body. Maybe we'll adjust this
199 // * there is no transfer-encoding=chunked already set
540 func chunked(te []string) bool { return len(te) > 0 && te[0] == "chunked" } func
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
transfer.go 26 // with malformed chunked encoding.
106 t.TransferEncoding = []string{"chunked"}
128 if chunked(t.TransferEncoding) {
135 if chunked(t.TransferEncoding) {
143 if !chunked(t.TransferEncoding) {
151 // chunked request body to the server. In particular, the case we really
153 // server with a chunked body when the body has zero bytes, since GETs with
154 // bodies (while acceptable according to specs), even zero-byte chunked
183 // can deal with a chunked request body. Maybe we'll adjust this
199 // * there is no transfer-encoding=chunked already set
540 func chunked(te []string) bool { return len(te) > 0 && te[0] == "chunked" } func
    [all...]
  /external/wpa_supplicant_8/src/wps/
httpread.c 20 * -- transfer encoding other than chunked
32 * HTTP/1.1, especially chunked data.
70 int chunked; /* nonzero for chunked data */ member in struct:httpread
80 /* The following apply if data is chunked: */
84 int in_trailer; /* in header fields after data (chunked only)*/
185 * other than chunked...
187 if (word_eq(hbp, "CHUNKED")) {
188 h->chunked = 1;
314 /* chunked overrides content-length always *
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 80 /* If set, this will cause response data to be sent in 'chunked' format */
81 boolean chunked = false; field in class:Support_TestWebServer
149 * Call this to indicate whether chunked data should be used
154 chunked = value;
159 * the "chunked" transfer encoding.
582 // TODO handle chunked encoding from the client
755 if (chunked) {
756 psPrint(ps, "Transfer-Encoding: chunked");
779 if (chunked) {
780 psPrint(ps, "Transfer-Encoding: chunked");
    [all...]
  /external/curl/tests/server/
rtspd.c 339 bool chunked = FALSE; local
628 else if(strncasecompare("Transfer-Encoding: chunked", line,
629 strlen("Transfer-Encoding: chunked"))) {
630 /* chunked data coming in */
631 chunked = TRUE;
634 if(chunked) {
    [all...]
sws.c 463 bool chunked = FALSE; local
743 else if(strncasecompare("Transfer-Encoding: chunked", line,
744 strlen("Transfer-Encoding: chunked"))) {
745 /* chunked data coming in */
746 chunked = TRUE;
749 if(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) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
textio.c 1691 Py_ssize_t start, endpos, chunked, offset_to_buffer; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
textio.c 1651 Py_ssize_t start, endpos, chunked, offset_to_buffer; local
    [all...]
  /external/python/cpython2/Modules/_io/
textio.c 1696 Py_ssize_t start, endpos, chunked, offset_to_buffer; local
    [all...]
  /external/python/cpython3/Modules/_io/
textio.c 1748 Py_ssize_t start, endpos, chunked, offset_to_buffer; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/mockwebserver/2.7.4/
mockwebserver-2.7.4.jar 
  /external/kotlinc/lib/
kotlin-runtime.jar 
kotlin-stdlib.jar 
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
kotlin-stdlib-1.2.20.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.2.0/
kotlin-stdlib-1.2.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.2.20/
kotlin-stdlib-1.2.20.jar 
  /external/robolectric/v1/lib/main/
httpcore-4.0.1.jar 
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
httpcore-4.0.1.jar 

Completed in 428 milliseconds

1 2 3