Home
last modified time | relevance | path

Searched refs:CongestionControlAlgorithm (Results 1 – 12 of 12) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/quiche/src/recovery/
Dmod.rs1070 pub enum CongestionControlAlgorithm { enum
1079 impl FromStr for CongestionControlAlgorithm { implementation
1087 "reno" => Ok(CongestionControlAlgorithm::Reno), in from_str()
1088 "cubic" => Ok(CongestionControlAlgorithm::CUBIC), in from_str()
1089 "bbr" => Ok(CongestionControlAlgorithm::BBR), in from_str()
1130 impl From<CongestionControlAlgorithm> for &'static CongestionControlOps {
1131 fn from(algo: CongestionControlAlgorithm) -> Self { in from()
1133 CongestionControlAlgorithm::Reno => &reno::RENO, in from()
1134 CongestionControlAlgorithm::CUBIC => &cubic::CUBIC, in from()
1135 CongestionControlAlgorithm::BBR => &bbr::BBR, in from()
[all …]
Dreno.rs172 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_init()
183 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_send()
197 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_slow_start()
246 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_slow_start_multi_acks()
317 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_congestion_event()
339 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_congestion_avoidance()
Dcubic.rs446 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_init()
457 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_send()
469 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_slow_start()
517 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_slow_start_multi_acks()
587 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_congestion_event()
608 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_congestion_avoidance()
666 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_collapse_cwnd_and_restart()
713 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_hystart_css_to_ss()
861 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_hystart_css_to_ca()
1002 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_spurious_congestion_event()
[all …]
/aosp_15_r20/external/rust/crates/quiche/src/recovery/
Dmod.rs1070 pub enum CongestionControlAlgorithm { enum
1079 impl FromStr for CongestionControlAlgorithm { implementation
1087 "reno" => Ok(CongestionControlAlgorithm::Reno), in from_str()
1088 "cubic" => Ok(CongestionControlAlgorithm::CUBIC), in from_str()
1089 "bbr" => Ok(CongestionControlAlgorithm::BBR), in from_str()
1130 impl From<CongestionControlAlgorithm> for &'static CongestionControlOps {
1131 fn from(algo: CongestionControlAlgorithm) -> Self { in from()
1133 CongestionControlAlgorithm::Reno => &reno::RENO, in from()
1134 CongestionControlAlgorithm::CUBIC => &cubic::CUBIC, in from()
1135 CongestionControlAlgorithm::BBR => &bbr::BBR, in from()
[all …]
Dreno.rs172 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_init()
183 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_send()
197 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_slow_start()
246 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_slow_start_multi_acks()
317 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_congestion_event()
339 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::Reno); in reno_congestion_avoidance()
Dcubic.rs446 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_init()
457 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_send()
469 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_slow_start()
517 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_slow_start_multi_acks()
587 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_congestion_event()
608 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_congestion_avoidance()
666 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_collapse_cwnd_and_restart()
713 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_hystart_css_to_ss()
861 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_hystart_css_to_ca()
1002 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::CUBIC); in cubic_spurious_congestion_event()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/src/recovery/bbr/
Dmod.rs372 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_init()
389 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_send()
403 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_startup()
470 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_congestion_event()
534 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_drain()
651 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_probe_bw()
721 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_probe_rtt()
/aosp_15_r20/external/rust/crates/quiche/src/recovery/bbr/
Dmod.rs372 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_init()
389 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_send()
403 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_startup()
470 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_congestion_event()
534 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_drain()
651 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_probe_bw()
721 cfg.set_cc_algorithm(recovery::CongestionControlAlgorithm::BBR); in bbr_probe_rtt()
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/src/
Dffi.rs322 config: &mut Config, algo: CongestionControlAlgorithm, in quiche_config_set_cc_algorithm() argument
Dlib.rs709 cc_algorithm: CongestionControlAlgorithm,
769 cc_algorithm: CongestionControlAlgorithm::CUBIC, in with_tls_ctx()
1124 self.cc_algorithm = CongestionControlAlgorithm::from_str(name)?; in set_cc_algorithm_name()
1132 pub fn set_cc_algorithm(&mut self, algo: CongestionControlAlgorithm) { in set_cc_algorithm() argument
15832 pub use crate::recovery::CongestionControlAlgorithm;
/aosp_15_r20/external/rust/crates/quiche/src/
Dffi.rs322 config: &mut Config, algo: CongestionControlAlgorithm, in quiche_config_set_cc_algorithm() argument
Dlib.rs709 cc_algorithm: CongestionControlAlgorithm,
769 cc_algorithm: CongestionControlAlgorithm::CUBIC, in with_tls_ctx()
1124 self.cc_algorithm = CongestionControlAlgorithm::from_str(name)?; in set_cc_algorithm_name()
1132 pub fn set_cc_algorithm(&mut self, algo: CongestionControlAlgorithm) { in set_cc_algorithm() argument
15832 pub use crate::recovery::CongestionControlAlgorithm;