Home
last modified time | relevance | path

Searched refs:on_connected (Results 1 – 6 of 6) sorted by relevance

/webrtc/ice/src/candidate/
H A Dcandidate_server_reflexive_test.rs4 use crate::agent::agent_vnet_test::{connect_with_vnet, on_connected};
60 let (a_notifier, mut a_connected) = on_connected(); in test_server_reflexive_only_connection()
76 let (b_notifier, mut b_connected) = on_connected(); in test_server_reflexive_only_connection()
H A Dcandidate_relay_test.rs4 use crate::agent::agent_vnet_test::{connect_with_vnet, on_connected};
83 let (a_notifier, mut a_connected) = on_connected(); in test_relay_only_connection()
101 let (b_notifier, mut b_connected) = on_connected(); in test_relay_only_connection()
/webrtc/ice/src/mdns/
H A Dmdns_test.rs25 let (a_notifier, mut a_connected) = on_connected(); in test_multicast_dns_only_connection()
36 let (b_notifier, mut b_connected) = on_connected(); in test_multicast_dns_only_connection()
59 let (a_notifier, mut a_connected) = on_connected(); in test_multicast_dns_mixed_connection()
70 let (b_notifier, mut b_connected) = on_connected(); in test_multicast_dns_mixed_connection()
/webrtc/ice/src/agent/
H A Dagent_transport_test.rs12 let (a_notifier, mut a_connected) = on_connected(); in pipe()
13 let (b_notifier, mut b_connected) = on_connected(); in pipe()
H A Dagent_test.rs422 let (a_notifier, mut a_connected) = on_connected(); in test_connectivity_on_startup()
423 let (b_notifier, mut b_connected) = on_connected(); in test_connectivity_on_startup()
534 let (a_notifier, mut a_connected) = on_connected(); in test_connectivity_lite()
535 let (b_notifier, mut b_connected) = on_connected(); in test_connectivity_lite()
1886 let (a_notifier, mut a_connected) = on_connected(); in test_agent_restart_both_side()
1889 let (b_notifier, mut b_connected) = on_connected(); in test_agent_restart_both_side()
2127 let (a_notifier, mut a_connected_rx) = on_connected(); in test_lite_lifecycle()
H A Dagent_vnet_test.rs291 let (a_notifier, mut a_connected) = on_connected(); in pipe_with_vnet()
292 let (b_notifier, mut b_connected) = on_connected(); in pipe_with_vnet()
341 pub(crate) fn on_connected() -> (OnConnectionStateChangeHdlrFn, mpsc::Receiver<()>) { in on_connected() function