Home
last modified time | relevance | path

Searched refs:is_running (Results 1 – 5 of 5) sorted by relevance

/webrtc/sctp/src/timer/
H A Dtimer_test.rs45 assert!(rt.is_running(), "should be running"); in test_ack_timer_start_and_stop()
49 assert!(!rt.is_running(), "should not be running"); in test_ack_timer_start_and_stop()
64 assert!(rt.is_running(), "should be running"); in test_ack_timer_start_and_stop()
68 assert!(!rt.is_running(), "should not be running"); in test_ack_timer_start_and_stop()
239 assert!(rt.is_running().await, "should be running"); in test_rtx_timer_callback_interval()
321 assert!(rt.is_running().await, "should be running"); in test_rtx_timer_start_stop_then_start()
383 assert!(rt.is_running().await, "should be running"); in test_rtx_timer_should_stop_after_rtx_failure()
477 assert!(rt.is_running().await, "must be running"); in test_rtx_timer_stop_timer_that_is_not_running_is_noop()
481 assert!(!rt.is_running().await, "must be false"); in test_rtx_timer_stop_timer_that_is_not_running_is_noop()
499 assert!(rt.is_running().await, "must be running"); in test_rtx_timer_closed_timer_wont_start()
[all …]
H A Dack_timer.rs70 pub(crate) fn is_running(&self) -> bool { in is_running() method
H A Drtx_timer.rs202 pub(crate) async fn is_running(&self) -> bool { in is_running() method
/webrtc/turn/src/client/periodic_timer/
H A Dperiodic_timer_test.rs20 assert!(!rt.is_running().await, "should not be running yet"); in test_periodic_timer()
24 assert!(rt.is_running().await, "should be running"); in test_periodic_timer()
34 assert!(!rt.is_running().await, "should not be running"); in test_periodic_timer()
/webrtc/turn/src/client/
H A Dperiodic_timer.rs90 pub async fn is_running(&self) -> bool { in is_running() method