Home
last modified time | relevance | path

Searched refs:number_to_store (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtp_packet_history.cc40 uint16_t number_to_store) { in SetStorePacketsStatus() argument
48 Allocate(number_to_store); in SetStorePacketsStatus()
54 void RTPPacketHistory::Allocate(size_t number_to_store) { in Allocate() argument
55 assert(number_to_store > 0); in Allocate()
56 assert(number_to_store <= kMaxHistoryCapacity); in Allocate()
58 stored_packets_.resize(number_to_store); in Allocate()
Drtp_packet_history.h35 void SetStorePacketsStatus(bool enable, uint16_t number_to_store);
75 void Allocate(size_t number_to_store) EXCLUSIVE_LOCKS_REQUIRED(*critsect_);
Drtp_rtcp_impl.h224 void SetStorePacketsStatus(bool enable, uint16_t number_to_store) override;
Drtp_rtcp_impl.cc754 const uint16_t number_to_store) { in SetStorePacketsStatus() argument
755 rtp_sender_.SetStorePacketsStatus(enable, number_to_store); in SetStorePacketsStatus()
Drtp_sender.h220 void SetStorePacketsStatus(bool enable, uint16_t number_to_store);
Drtp_sender.cc702 void RTPSender::SetStorePacketsStatus(bool enable, uint16_t number_to_store) { in SetStorePacketsStatus() argument
703 packet_history_.SetStorePacketsStatus(enable, number_to_store); in SetStorePacketsStatus()