HomeSort by relevance Sort by last modified time
    Searched refs:content_length (Results 1 - 15 of 15) sorted by null

  /external/chromium/net/tools/fetch/
http_server_response_info.h 15 : status(200), content_length(0), connection_close(false) {
31 int content_length; member in class:HttpServerResponseInfo
http_session.cc 31 response_info.content_length = data.length();
http_listen_socket.cc 225 if (info->content_length > 0)
226 response += "Content-length: " + IntToString(info->content_length) +
  /external/v8/src/
debug-agent.cc 217 int content_length = 0; local
275 content_length = 10 * content_length + (value[i] - '0');
284 if (content_length == 0) {
289 char* buffer = NewArray<char>(content_length + 1);
290 received = ReceiveAll(conn, buffer, content_length);
291 if (received < content_length) {
295 buffer[content_length] = '\0';
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
httpread.c 87 int content_length; /* body length, iff got_content_length */ member in struct:httpread
205 h->content_length = atol(hbp);
434 h->content_length);
488 if (h->got_content_length && h->content_length == 0) {
537 new_alloc_nbytes < (h->content_length + 1))
538 new_alloc_nbytes = h->content_length + 1;
602 h->body_nbytes >= h->content_length) {
626 ncopy = h->content_length - h->body_nbytes;
  /external/chromium/net/http/
partial_data.cc 206 int64 content_length = headers->GetContentLength();
207 if (content_length < 0 || content_length != end - start + 1)
http_cache_transaction.cc     [all...]
http_cache_unittest.cc 771 std::string content_length = StringPrintf("Content-Length: %d\n", len);
773 content_length.size(), content_length);
818 int64 content_length = headers->GetContentLength();
821 if (content_length != length)
    [all...]
  /external/bluetooth/glib/gio/win32/
gwinhttpfile.c 478 wchar_t *content_length; local
535 content_length = NULL;
540 &content_length,
546 if (swscanf (content_length, L"%I64d%n", &cl, &n) == 1 &&
547 n == wcslen (content_length))
550 g_free (content_length);
  /external/chromium/net/url_request/
url_request_job.cc 419 std::string content_length; local
420 request_->GetResponseHeaderByName("content-length", &content_length);
421 if (!content_length.empty())
422 expected_content_size_ = StringToInt64(content_length);
url_request_unittest.cc 691 const size_t content_length = last_byte_position - first_byte_position + 1; local
709 EXPECT_EQ(static_cast<int>(content_length), d.bytes_received());
732 const size_t content_length = last_byte_position - first_byte_position + 1; local
749 EXPECT_EQ(static_cast<int>(content_length), d.bytes_received());
    [all...]
  /external/qemu/proxy/
proxy_http_rewriter.c 615 char* content_length; local
643 content_length = http_request_find_header(r, "Content-Length");
644 if (content_length != NULL) {
646 int64_t body_len = strtoll( content_length, &end, 10 );
647 if (*end != '\0' || *content_length == '\0' || body_len < 0) {
648 PROXY_LOG("%s: bad content length: %s", root->name, content_length);
    [all...]
  /external/chromium/net/tools/flip_server/
balsa_headers.cc 591 const base::StringPiece content_length(kContentLength,
602 RemoveAllOfHeader(content_length);
616 AppendHeader(content_length, length_str);
628 const base::StringPiece content_length(kContentLength,
630 RemoveAllOfHeader(content_length);
balsa_headers.h 1106 size_t content_length() const { return content_length_; } function in class:net::BalsaHeaders
    [all...]
  /external/chromium/third_party/libevent/
http.c 446 long content_length)
451 evutil_snprintf(len, sizeof(len), "%ld", content_length);
1534 const char *content_length; local
    [all...]

Completed in 294 milliseconds