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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
xhr_benchmark_handler.py 61 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/third_party/webrtc/modules/rtp_rtcp/source/
rtp_format_h264.cc 199 size_t* bytes_to_send,
201 *bytes_to_send = 0;
203 *bytes_to_send = 0;
212 *bytes_to_send = packet.size;
215 assert(*bytes_to_send <= max_payload_len_);
217 NextAggregatePacket(buffer, bytes_to_send);
218 assert(*bytes_to_send <= max_payload_len_);
220 NextFragmentPacket(buffer, bytes_to_send);
221 assert(*bytes_to_send <= max_payload_len_);
228 size_t* bytes_to_send) {
    [all...]
rtp_format_h264.h 35 // bytes_to_send is an output variable that will contain number of bytes
41 size_t* bytes_to_send,
79 void NextAggregatePacket(uint8_t* buffer, size_t* bytes_to_send);
80 void NextFragmentPacket(uint8_t* buffer, size_t* bytes_to_send);
rtp_format.h 37 // bytes_to_send is an output variable that will contain number of bytes
43 size_t* bytes_to_send,
rtp_format_video_generic.h 38 // bytes_to_send is an output variable that will contain number of bytes
44 size_t* bytes_to_send,
rtp_format_video_generic.cc 48 size_t* bytes_to_send,
55 *bytes_to_send = payload_length_ + kGenericHeaderLength;
rtp_format_vp8.h 70 // bytes_to_send is an output variable that will contain number of bytes
79 size_t* bytes_to_send,
rtp_format_vp8.cc 295 size_t* bytes_to_send,
318 *bytes_to_send = bytes;
rtp_sender.cc 459 int RTPSender::TrySendRedundantPayloads(int bytes_to_send) {
467 int bytes_left = bytes_to_send;
482 return bytes_to_send - bytes_left;
    [all...]
  /external/chromium_org/device/serial/
data_sender.cc 258 uint32_t bytes_to_send = static_cast<uint32_t>(data_.size()) - bytes_sent_; local
261 &bytes_to_send,
266 bytes_sent_ += bytes_to_send;
  /external/chromium_org/net/websockets/
websocket_channel.cc 430 const size_t bytes_to_send = local
432 const bool final = front.final() && data_size == bytes_to_send;
435 DCHECK(!bytes_to_send || data) << "Non empty data should not be null.";
436 const std::vector<char> data_vector(data, data + bytes_to_send);
439 << " bytes_to_send=" << bytes_to_send; local
443 if (bytes_to_send < data_size) {
444 front.DidConsume(bytes_to_send);
448 const int64 signed_bytes_to_send = base::checked_cast<int64>(bytes_to_send);
    [all...]
  /external/bluetooth/bluedroid/hci/src/
hci_h4.c 586 uint16_t bytes_to_send, lay_spec; local
632 bytes_to_send = acl_pkt_size + 1; /* packet_size + message type */
634 bytes_sent = userial_write(event,(uint8_t *) p,bytes_to_send);
686 bytes_to_send = p_msg->len + 1; /* message_size + message type */
688 bytes_sent = userial_write(event,(uint8_t *) p, bytes_to_send);
    [all...]
  /external/chromium_org/net/quic/congestion_control/
tcp_cubic_sender_test.cc 174 QuicByteCount bytes_to_send = sender_->SendWindow(); local
178 bytes_to_send);
197 QuicByteCount bytes_to_send = sender_->SendWindow(); local
199 bytes_to_send);
  /external/chromium_org/media/cast/test/utility/
udp_proxy.cc 82 int64 bytes_to_send = static_cast<int64>( local
85 if (bytes_to_send < static_cast<int64>(buffer_.front()->size())) {
86 bytes_to_send = buffer_.front()->size();
89 static_cast<int64>(buffer_.front()->size()) <= bytes_to_send) {
92 bytes_to_send -= packet->size();

Completed in 205 milliseconds