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

  /external/chromium/net/tools/fetch/
http_server_response_info.h 31 int content_length; member in class:HttpServerResponseInfo
  /external/chromium/chrome/common/
auto_start_linux.cc 48 std::string::size_type content_length = autostart_file_contents.length(); local
50 content_length) !=
51 static_cast<int>(content_length)) {
automation_messages.h 46 int64 content_length,
55 int64 content_length; member in struct:AutomationURLResponse
  /external/chromium/chrome/browser/debugger/
devtools_remote_message.h 50 int content_length() const { function in class:DevToolsRemoteMessage
  /external/chromium/webkit/glue/media/
buffered_resource_loader_unittest.cc 125 EXPECT_EQ(instance_size, loader_->content_length());
150 int64 content_length = -1; local
155 content_length = last_position - first_position + 1;
157 response.setExpectedContentLength(content_length);
173 EXPECT_EQ(content_length, loader_->content_length());
buffered_resource_loader.cc 210 int64 BufferedResourceLoader::content_length() { function in class:webkit_glue::BufferedResourceLoader
  /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/v8/src/
debug-agent.cc 237 int content_length = 0; local
295 content_length = 10 * content_length + (value[i] - '0');
304 if (content_length == 0) {
309 char* buffer = NewArray<char>(content_length + 1);
310 received = ReceiveAll(conn, buffer, content_length);
311 if (received < content_length) {
315 buffer[content_length] = '\0';
  /external/chromium/chrome/browser/sync/engine/net/
server_connection_manager.h 46 // content_length may not be valid.
89 int64 content_length; member in struct:browser_sync::HttpResponse
102 content_length(kUnsetContentLength),
  /external/chromium/net/url_request/
url_request_job.cc 282 std::string content_length; local
283 request_->GetResponseHeaderByName("content-length", &content_length);
284 if (!content_length.empty())
285 base::StringToInt64(content_length, &expected_content_size_);
url_request_unittest.cc 964 const size_t content_length = last_byte_position - first_byte_position + 1; local
985 EXPECT_EQ(static_cast<int>(content_length), d.bytes_received());
1008 const size_t content_length = last_byte_position - first_byte_position + 1; local
1028 EXPECT_EQ(static_cast<int>(content_length), d.bytes_received());
    [all...]
  /external/chromium/webkit/glue/
resource_loader_bridge.h 142 int64 content_length; member in struct:webkit_glue::ResourceResponseInfo
  /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/wpa_supplicant_8/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/tools/flip_server/
balsa_headers.h 969 size_t content_length() const { return content_length_; } function in class:net::BalsaHeaders
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc 494 size_t content_length = 0; local
495 if (this->document->GetAvailable(&content_length)) {
497 sprintfn(buffer, sizeof(buffer), "%d", content_length);
  /external/qemu/proxy/
proxy_http_rewriter.c 623 char* content_length; local
651 content_length = http_request_find_header(r, "Content-Length");
652 if (content_length != NULL) {
654 int64_t body_len = strtoll( content_length, &end, 10 );
655 if (*end != '\0' || *content_length == '\0' || body_len < 0) {
656 PROXY_LOG("%s: bad content length: %s", root->name, content_length);
    [all...]
  /external/chromium/net/http/
http_cache_unittest.cc 932 std::string content_length = base::StringPrintf("Content-Length: %d\n", local
935 content_length.size(), content_length);
975 int64 content_length = headers->GetContentLength(); local
978 ASSERT_EQ(length, content_length);
    [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 994 milliseconds