Home
last modified time | relevance | path

Searched refs:timer_id (Results 1 – 3 of 3) sorted by relevance

/webrtc/sctp/src/timer/
H A Dtimer_test.rs176 timer_id: RtxTimerId, field
200 assert_eq!(self.timer_id, timer_id, "unexpected timer ID: {timer_id}"); in on_retransmission_timeout()
229 timer_id, in test_rtx_timer_callback_interval()
256 timer_id, in test_rtx_timer_last_start_wins()
284 timer_id, in test_rtx_timer_stop_right_after_start()
309 timer_id, in test_rtx_timer_start_stop_then_start()
338 timer_id, in test_rtx_timer_start_and_stop_in_atight_loop()
364 timer_id, in test_rtx_timer_should_stop_after_rtx_failure()
414 timer_id, in test_rtx_timer_should_not_stop_if_max_retrans_is_zero()
464 timer_id, in test_rtx_timer_stop_timer_that_is_not_running_is_noop()
[all …]
H A Drtx_timer.rs100 async fn on_retransmission_timeout(&mut self, timer_id: RtxTimerId, n: usize); in on_retransmission_timeout()
101 async fn on_retransmission_failure(&mut self, timer_id: RtxTimerId); in on_retransmission_failure()
/webrtc/turn/src/client/periodic_timer/
H A Dperiodic_timer_test.rs15 let timer_id = TimerIdRefresh::Perms; in test_periodic_timer() localVariable
16 let rt = PeriodicTimer::new(timer_id, Duration::from_millis(50)); in test_periodic_timer()