Home
last modified time | relevance | path

Searched refs:SetCongestionWindow (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/modules/pacing/
Dpaced_sender.cc91 void PacedSender::SetCongestionWindow(DataSize congestion_window_size) { in SetCongestionWindow() function in webrtc::PacedSender
94 pacing_controller_.SetCongestionWindow(congestion_window_size); in SetCongestionWindow()
Drtp_packet_pacer.h37 virtual void SetCongestionWindow(DataSize congestion_window_size) = 0;
Dtask_queue_paced_sender.cc89 void TaskQueuePacedSender::SetCongestionWindow( in SetCongestionWindow() function in webrtc::TaskQueuePacedSender
93 pacing_controller_.SetCongestionWindow(congestion_window_size); in SetCongestionWindow()
Dtask_queue_paced_sender.h75 void SetCongestionWindow(DataSize congestion_window_size) override;
Dpaced_sender.h87 void SetCongestionWindow(DataSize congestion_window_size) override;
Dpacing_controller.h101 void SetCongestionWindow(DataSize congestion_window_size);
Dpacing_controller_unittest.cc401 pacer.SetCongestionWindow(DataSize::Bytes(video.packet_size - 100)); in TEST_P()
428 pacer.SetCongestionWindow(DataSize::Bytes(800)); in TEST_P()
1065 pacer_->SetCongestionWindow(DataSize::Bytes(kCongestionWindow)); in TEST_P()
1106 pacer_->SetCongestionWindow(DataSize::Bytes(800)); in TEST_P()
1145 pacer_->SetCongestionWindow(DataSize::Bytes(kCongestionWindow)); in TEST_P()
Dpacing_controller.cc171 void PacingController::SetCongestionWindow(DataSize congestion_window_size) { in SetCongestionWindow() function in webrtc::PacingController
/external/webrtc/call/
Drtp_transport_controller_send.cc643 pacer()->SetCongestionWindow(*update.congestion_window); in PostUpdates()