Searched defs:bytes_to_send (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_video_generic.cc48 size_t* bytes_to_send,
55 *bytes_to_send = payload_length_ + kGenericHeaderLength;
47 NextPacket(uint8_t* buffer, size_t* bytes_to_send, bool* last_packet) argument
H A Drtp_format_h264.cc199 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) {
198 NextPacket(uint8_t* buffer, size_t* bytes_to_send, bool* last_packet) argument
227 NextAggregatePacket(uint8_t* buffer, size_t* bytes_to_send) argument
252 NextFragmentPacket(uint8_t* buffer, size_t* bytes_to_send) argument
[all...]
H A Drtp_format_vp8.cc295 size_t* bytes_to_send,
318 *bytes_to_send = bytes;
294 NextPacket(uint8_t* buffer, size_t* bytes_to_send, bool* last_packet) argument
H A Drtp_sender.cc459 int RTPSender::TrySendRedundantPayloads(int bytes_to_send) { argument
467 int bytes_left = bytes_to_send;
482 return bytes_to_send - bytes_left;
/external/chromium_org/device/serial/
H A Ddata_sender.cc258 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/quic/congestion_control/
H A Dtcp_cubic_sender_test.cc174 QuicByteCount bytes_to_send = sender_->SendWindow(); local
178 bytes_to_send);
197 QuicByteCount bytes_to_send = sender_->SendWindow(); local
199 bytes_to_send);
/external/bluetooth/bluedroid/hci/src/
H A Dhci_h4.c586 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);
/external/chromium_org/media/cast/test/utility/
H A Dudp_proxy.cc82 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();
/external/chromium_org/net/websockets/
H A Dwebsocket_channel.cc430 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);

Completed in 1933 milliseconds