Home
last modified time | relevance | path

Searched refs:RtxTimer (Results 1 – 4 of 4) sorted by relevance

/webrtc/sctp/src/timer/
H A Dtimer_test.rs232 let rt = RtxTimer::new(Arc::downgrade(&obs), timer_id, PATH_MAX_RETRANS); in test_rtx_timer_callback_interval()
259 let rt = RtxTimer::new(Arc::downgrade(&obs), timer_id, PATH_MAX_RETRANS); in test_rtx_timer_last_start_wins()
287 let rt = RtxTimer::new(Arc::downgrade(&obs), timer_id, PATH_MAX_RETRANS); in test_rtx_timer_stop_right_after_start()
312 let rt = RtxTimer::new(Arc::downgrade(&obs), timer_id, PATH_MAX_RETRANS); in test_rtx_timer_start_stop_then_start()
341 let rt = RtxTimer::new(Arc::downgrade(&obs), timer_id, PATH_MAX_RETRANS); in test_rtx_timer_start_and_stop_in_atight_loop()
370 let rt = RtxTimer::new(Arc::downgrade(&obs), timer_id, PATH_MAX_RETRANS); in test_rtx_timer_should_stop_after_rtx_failure()
421 let rt = RtxTimer::new(Arc::downgrade(&obs), timer_id, 0); in test_rtx_timer_should_not_stop_if_max_retrans_is_zero()
469 let rt = RtxTimer::new(Arc::downgrade(&obs), timer_id, PATH_MAX_RETRANS); in test_rtx_timer_stop_timer_that_is_not_running_is_noop()
495 let rt = RtxTimer::new(Arc::downgrade(&obs), timer_id, PATH_MAX_RETRANS); in test_rtx_timer_closed_timer_wont_start()
H A Drtx_timer.rs106 pub(crate) struct RtxTimer<T: 'static + RtxTimerObserver + Send> { struct
113 impl<T: 'static + RtxTimerObserver + Send> RtxTimer<T> { impl
122 RtxTimer { in new()
/webrtc/sctp/src/association/
H A Dmod.rs339 ai.t1init = Some(RtxTimer::new( in new()
344 ai.t1cookie = Some(RtxTimer::new( in new()
349 ai.t2shutdown = Some(RtxTimer::new( in new()
354 ai.t3rtx = Some(RtxTimer::new( in new()
359 ai.treconfig = Some(RtxTimer::new( in new()
H A Dassociation_internal.rs65 pub(crate) t1init: Option<RtxTimer<AssociationInternal>>,
66 pub(crate) t1cookie: Option<RtxTimer<AssociationInternal>>,
67 pub(crate) t2shutdown: Option<RtxTimer<AssociationInternal>>,
68 pub(crate) t3rtx: Option<RtxTimer<AssociationInternal>>,
69 pub(crate) treconfig: Option<RtxTimer<AssociationInternal>>,