Searched refs:bytes_to_send (Results 1 - 12 of 12) sorted by relevance

/external/curl/tests/libtest/
H A Dlib1533.c60 size_t bytes_to_send = data->remaining_bytes; local
61 if(bytes_to_send > totalsize) {
62 bytes_to_send = totalsize;
65 memset(ptr, 'a', bytes_to_send);
66 data->remaining_bytes -= bytes_to_send;
68 return bytes_to_send;
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_h264.cc253 size_t* bytes_to_send,
255 *bytes_to_send = 0;
257 *bytes_to_send = 0;
266 *bytes_to_send = packet.size;
269 assert(*bytes_to_send <= max_payload_len_);
271 NextAggregatePacket(buffer, bytes_to_send);
272 assert(*bytes_to_send <= max_payload_len_);
274 NextFragmentPacket(buffer, bytes_to_send);
275 assert(*bytes_to_send <= max_payload_len_);
282 size_t* bytes_to_send) {
252 NextPacket(uint8_t* buffer, size_t* bytes_to_send, bool* last_packet) argument
281 NextAggregatePacket(uint8_t* buffer, size_t* bytes_to_send) argument
306 NextFragmentPacket(uint8_t* buffer, size_t* bytes_to_send) argument
[all...]
H A Drtp_format_h264.h35 // 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);
H A Drtp_format_vp9.h53 // |bytes_to_send| is an output variable that will contain number of bytes
59 size_t* bytes_to_send,
76 // |bytes_to_send| contains the number of written bytes to the buffer.
80 size_t* bytes_to_send) const;
H A Drtp_format.h37 // bytes_to_send is an output variable that will contain number of bytes
43 size_t* bytes_to_send,
H A Drtp_format_video_generic.cc49 size_t* bytes_to_send,
56 *bytes_to_send = payload_length_ + kGenericHeaderLength;
48 NextPacket(uint8_t* buffer, size_t* bytes_to_send, bool* last_packet) argument
H A Drtp_format_video_generic.h39 // bytes_to_send is an output variable that will contain number of bytes
45 size_t* bytes_to_send,
H A Drtp_format_vp8.h70 // bytes_to_send is an output variable that will contain number of bytes
79 size_t* bytes_to_send,
H A Drtp_format_vp9.cc549 size_t* bytes_to_send,
557 if (!WriteHeaderAndPayload(packet_info, buffer, bytes_to_send)) {
604 size_t* bytes_to_send) const {
613 *bytes_to_send = header_length + packet_info.size;
548 NextPacket(uint8_t* buffer, size_t* bytes_to_send, bool* last_packet) argument
H A Drtp_format_vp8.cc201 size_t* bytes_to_send,
224 *bytes_to_send = static_cast<size_t>(bytes);
200 NextPacket(uint8_t* buffer, size_t* bytes_to_send, bool* last_packet) argument
H A Drtp_sender.cc562 size_t RTPSender::TrySendRedundantPayloads(size_t bytes_to_send) { argument
570 int bytes_left = static_cast<int>(bytes_to_send);
585 return bytes_to_send - bytes_left;
/external/webrtc/webrtc/modules/pacing/
H A Dpacket_router.cc56 size_t PacketRouter::TimeToSendPadding(size_t bytes_to_send) { argument
62 module->TimeToSendPadding(bytes_to_send - total_bytes_sent);
64 if (total_bytes_sent >= bytes_to_send)

Completed in 2376 milliseconds