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

  /external/chromium_org/net/quic/congestion_control/
tcp_cubic_sender_test.cc 41 QuicByteCount bytes_to_send = sender_->AvailableCongestionWindow(); local
42 while (bytes_to_send > 0) {
43 QuicByteCount bytes_in_packet = std::min(kMaxPacketSize, bytes_to_send);
46 bytes_to_send -= bytes_in_packet;
47 if (bytes_to_send > 0) {
114 QuicByteCount bytes_to_send = sender_->CongestionWindow(); local
116 bytes_to_send);
  /external/chromium_org/chrome_frame/test/
test_server.cc 353 int bytes_to_send = std::min(options_.chunk_size_, size - cur_pos_); local
355 socket_->Send(chunk_ptr, bytes_to_send);
356 VLOG(1) << "Sent(" << cur_pos_ << "," << bytes_to_send << "): "
357 << base::StringPiece(chunk_ptr, bytes_to_send);
359 cur_pos_ += bytes_to_send;
  /external/bluetooth/bluedroid/hci/src/
hci_h4.c 597 uint16_t bytes_to_send, lay_spec; local
643 bytes_to_send = acl_pkt_size + 1; /* packet_size + message type */
645 bytes_sent = userial_write(event,(uint8_t *) p,bytes_to_send);
697 bytes_to_send = p_msg->len + 1; /* message_size + message type */
699 bytes_sent = userial_write(event,(uint8_t *) p, bytes_to_send);
    [all...]
  /external/chromium/net/spdy/
spdy_framer.cc 486 size_t bytes_to_send = std::min(data_len, remaining_control_payload_); local
487 DCHECK_GT(bytes_to_send, 0u);
489 &control_frame, data, bytes_to_send);
490 data_len -= bytes_to_send;
491 remaining_control_payload_ -= bytes_to_send;
    [all...]

Completed in 95 milliseconds