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

  /external/chromium_org/chrome/renderer/extensions/
user_script_slave.cc 185 int body_length = 0; local
186 CHECK(pickle.ReadData(&iter, &body, &body_length));
188 base::StringPiece(body, body_length));
192 int body_length = 0; local
193 CHECK(pickle.ReadData(&iter, &body, &body_length));
195 base::StringPiece(body, body_length));
  /external/chromium_org/chrome/utility/media_galleries/
pmp_column_reader.cc 150 int64 body_length = length_ - kPmpHeaderSize; local
173 return body_length == expected_body_length;
  /external/chromium_org/chrome/browser/devtools/adb/
android_usb_device.cc 299 size_t body_length = message->body.length() + (append_zero ? 1 : 0); local
300 header.push_back(body_length);
309 scoped_refptr<net::IOBuffer> body_buffer = new net::IOBuffer(body_length);
312 body_buffer->data()[body_length - 1] = 0;
313 outgoing_queue_.push(std::make_pair(body_buffer, body_length));
314 if (zero_mask_ && (body_length & zero_mask_) == 0) {
  /external/qemu/proxy/
proxy_http_rewriter.c 353 int64_t body_length; member in struct:__anon27288
627 conn->body_length = 0;
661 conn->body_length = body_len;
692 D("%s: body_length=%lld body_mode=%s",
693 root->name, conn->body_length,
722 if (conn->body_length == 0)
725 if (conn->body_length > MAX_BODY_BUFFER)
728 wanted = (int)conn->body_length;
817 /* if we get here, body_length > 0 */
877 conn->body_length -= avail
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_upnp_web.c 316 int body_length; local
404 body_length = (char *) wpabuf_put(buf, 0) - body_start;
405 os_snprintf(len_buf, 10, "%d", body_length);
779 int body_length = (char *) wpabuf_put(buf, 0) - body_start; local
781 os_snprintf(len_buf, sizeof(len_buf), "%d", body_length);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
mount_http_test.cc 303 ACTION_P3(ReadResponseBodyAction, offset, body, body_length) {
307 if (*offset >= body_length)
310 read_length = std::min(read_length, body_length - *offset);
  /external/chromium_org/net/tools/flip_server/
balsa_frame_test.cc 225 size_t body_length = 0; local
250 .WillOnce(DoAll(SaveArg<0>(&body), SaveArg<1>(&body_length)));
275 ASSERT_EQ("hello, world\r\n", StringPiece(body, body_length));

Completed in 344 milliseconds