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

1 2 3 4 5

  /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/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...]
  /prebuilts/go/darwin-x86/src/net/http/httputil/
httputil.go 15 // out of HTTP "chunked" format before returning it.
25 // "chunked" format before writing them to w. Closing the returned chunkedWriter
37 // ErrLineTooLong is returned when reading malformed chunked data
dump_test.go 30 // HTTP/1.1 => chunked coding; body; empty trailer
41 TransferEncoding: []string{"chunked"},
48 "Transfer-Encoding: chunked\r\n\r\n" +
188 // this was turning into a chunked request.
331 TransferEncoding: []string{"chunked"},
335 Transfer-Encoding: chunked
  /prebuilts/go/linux-x86/src/net/http/httputil/
httputil.go 15 // out of HTTP "chunked" format before returning it.
25 // "chunked" format before writing them to w. Closing the returned chunkedWriter
37 // ErrLineTooLong is returned when reading malformed chunked data
dump_test.go 30 // HTTP/1.1 => chunked coding; body; empty trailer
41 TransferEncoding: []string{"chunked"},
48 "Transfer-Encoding: chunked\r\n\r\n" +
188 // this was turning into a chunked request.
331 TransferEncoding: []string{"chunked"},
335 Transfer-Encoding: chunked
  /prebuilts/go/darwin-x86/src/net/http/
responsewrite_test.go 87 // setting chunked.
97 TransferEncoding: []string{"chunked"},
101 "Transfer-Encoding: chunked\r\n\r\n" +
152 // HTTP/1.1, chunked coding; empty trailer; close
162 TransferEncoding: []string{"chunked"},
168 "Transfer-Encoding: chunked\r\n\r\n" +
185 TransferEncoding: []string{"chunked"},
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...]
requestwrite_test.go 33 // HTTP/1.1 => chunked coding; no body; no trailer
80 // HTTP/1.1 => chunked coding; body; empty trailer
92 TransferEncoding: []string{"chunked"},
100 "Transfer-Encoding: chunked\r\n\r\n" +
106 "Transfer-Encoding: chunked\r\n\r\n" +
109 // HTTP/1.1 POST => chunked coding; body; empty trailer
122 TransferEncoding: []string{"chunked"},
131 "Transfer-Encoding: chunked\r\n\r\n" +
138 "Transfer-Encoding: chunked\r\n\r\n" +
236 "Transfer-Encoding: chunked\r\n"
    [all...]
readrequest_test.go 149 // Tests chunked body with trailer:
153 "Transfer-Encoding: chunked\r\n\r\n" +
164 TransferEncoding: []string{"chunked"},
181 // Tests chunked body and a bogus Content-Length which should be deleted.
185 "Transfer-Encoding: chunked\r\n" +
196 TransferEncoding: []string{"chunked"},
  /prebuilts/go/linux-x86/src/net/http/
responsewrite_test.go 87 // setting chunked.
97 TransferEncoding: []string{"chunked"},
101 "Transfer-Encoding: chunked\r\n\r\n" +
152 // HTTP/1.1, chunked coding; empty trailer; close
162 TransferEncoding: []string{"chunked"},
168 "Transfer-Encoding: chunked\r\n\r\n" +
185 TransferEncoding: []string{"chunked"},
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...]
requestwrite_test.go 33 // HTTP/1.1 => chunked coding; no body; no trailer
80 // HTTP/1.1 => chunked coding; body; empty trailer
92 TransferEncoding: []string{"chunked"},
100 "Transfer-Encoding: chunked\r\n\r\n" +
106 "Transfer-Encoding: chunked\r\n\r\n" +
109 // HTTP/1.1 POST => chunked coding; body; empty trailer
122 TransferEncoding: []string{"chunked"},
131 "Transfer-Encoding: chunked\r\n\r\n" +
138 "Transfer-Encoding: chunked\r\n\r\n" +
236 "Transfer-Encoding: chunked\r\n"
    [all...]
readrequest_test.go 149 // Tests chunked body with trailer:
153 "Transfer-Encoding: chunked\r\n\r\n" +
164 TransferEncoding: []string{"chunked"},
181 // Tests chunked body and a bogus Content-Length which should be deleted.
185 "Transfer-Encoding: chunked\r\n" +
196 TransferEncoding: []string{"chunked"},
  /external/curl/tests/
http_pipe.py 235 elif path == '/chunked.txt':
242 '200 OK', ['Transfer-Encoding: chunked', 'Cache-Control: no-store'],
285 '200 OK', ['Transfer-Encoding: chunked', 'Cache-Control: no-store'], body)
  /external/webrtc/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;
156 ProcessResult ProcessHeaderComplete(bool chunked,
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...]
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;
  /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/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...]
  /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 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) {
  /prebuilts/go/darwin-x86/src/net/http/internal/
chunked.go 5 // The wire protocol for HTTP's "chunked" Transfer-Encoding.
24 // out of HTTP "chunked" format before returning it.
81 cr.err = errors.New("malformed chunked encoding")
173 // "chunked" format before writing them to w. Closing the returned chunkedWriter
185 // Writing to chunkedWriter translates to writing in HTTP chunked Transfer
196 // Don't send 0-length data. It looks like EOF for chunked encoding.
  /prebuilts/go/linux-x86/src/net/http/internal/
chunked.go 5 // The wire protocol for HTTP's "chunked" Transfer-Encoding.
24 // out of HTTP "chunked" format before returning it.
81 cr.err = errors.New("malformed chunked encoding")
173 // "chunked" format before writing them to w. Closing the returned chunkedWriter
185 // Writing to chunkedWriter translates to writing in HTTP chunked Transfer
196 // Don't send 0-length data. It looks like EOF for chunked encoding.

Completed in 836 milliseconds

1 2 3 4 5