Home
last modified time | relevance | path

Searched refs:bytes_to_send (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
Dxhr_benchmark_handler.py61 bytes_to_send = request_array[0]
63 bytes_to_send = int(bytes_to_send)
65 self._logger.debug('Malformed size parameter: %r', bytes_to_send)
67 self._logger.debug('Requested to send %s bytes', bytes_to_send)
87 'Content-Length: %d\r\n\r\n' % bytes_to_send)
94 while bytes_to_send > 0:
95 bytes_to_send_in_this_loop = bytes_to_send
106 bytes_to_send -= bytes_to_send_in_this_loop
/external/chromium_org/net/websockets/
Dwebsocket_channel.cc430 const size_t bytes_to_send = in SendFlowControl() local
432 const bool final = front.final() && data_size == bytes_to_send; in SendFlowControl()
435 DCHECK(!bytes_to_send || data) << "Non empty data should not be null."; in SendFlowControl()
436 const std::vector<char> data_vector(data, data + bytes_to_send); in SendFlowControl()
439 << " bytes_to_send=" << bytes_to_send; in SendFlowControl()
443 if (bytes_to_send < data_size) { in SendFlowControl()
444 front.DidConsume(bytes_to_send); in SendFlowControl()
448 const int64 signed_bytes_to_send = base::checked_cast<int64>(bytes_to_send); in SendFlowControl()
/external/bluetooth/bluedroid/hci/src/
Dhci_h4.c586 uint16_t bytes_to_send, lay_spec; in hci_h4_send_msg() local
632 bytes_to_send = acl_pkt_size + 1; /* packet_size + message type */ in hci_h4_send_msg()
634 bytes_sent = userial_write(event,(uint8_t *) p,bytes_to_send); in hci_h4_send_msg()
686 bytes_to_send = p_msg->len + 1; /* message_size + message type */ in hci_h4_send_msg()
688 bytes_sent = userial_write(event,(uint8_t *) p, bytes_to_send); in hci_h4_send_msg()
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
Drtp_format_vp8.cc73 int* bytes_to_send, in NextPacket() argument
92 *bytes_to_send = WriteHeaderAndPayload(packet_info, buffer, max_payload_len_); in NextPacket()
93 if (*bytes_to_send < 0) { in NextPacket()
Drtp_format_vp8.h79 int* bytes_to_send,
Drtp_sender.cc445 int RTPSender::SendRedundantPayloads(int payload_type, int bytes_to_send) { in SendRedundantPayloads() argument
449 int bytes_left = bytes_to_send; in SendRedundantPayloads()
464 return bytes_to_send - bytes_left; in SendRedundantPayloads()
/external/chromium_org/net/quic/congestion_control/
Dtcp_cubic_sender_test.cc173 QuicByteCount bytes_to_send = sender_->SendWindow(); in TEST_F() local
177 bytes_to_send); in TEST_F()
200 QuicByteCount bytes_to_send = sender_->SendWindow(); in TEST_F() local
202 bytes_to_send); in TEST_F()