Home
last modified time | relevance | path

Searched refs:cs (Results 1 – 10 of 10) sorted by relevance

/webrtc/dtls/examples/hub/src/
H A Dlib.rs65 let mut cs = conns.lock().await; in unregister() localVariable
66 cs.remove(&remote_addr.to_string()); in unregister()
/webrtc/examples/examples/offer-answer/
H A Doffer.rs121 let cs = PENDING_CANDIDATES.lock().await; in remote_handler() localVariable
122 for c in &*cs { in remote_handler()
252 let mut cs = pending_candidates3.lock().await; in main() localVariable
253 cs.push(c); in main()
H A Danswer.rs163 let cs = PENDING_CANDIDATES.lock().await; in remote_handler() localVariable
164 for c in &*cs { in remote_handler()
294 let mut cs = pending_candidates3.lock().await; in main() localVariable
295 cs.push(c); in main()
/webrtc/dtls/src/flight/
H A Dflight0.rs88 let mut cs = state.cipher_suite.lock().await; in parse() localVariable
89 *cs = Some(cipher_suite); in parse()
H A Dflight3.rs286 let mut cs = state.cipher_suite.lock().await; in parse() localVariable
287 *cs = Some(cipher_suite); in parse()
/webrtc/ice/src/agent/
H A Dagent_internal.rs656 for cs in local_candidates.values_mut() { in delete_all_candidates()
657 for c in cs { in delete_all_candidates()
673 for cs in remote_candidates.values_mut() { in delete_all_candidates()
674 for c in cs { in delete_all_candidates()
/webrtc/webrtc/src/peer_connection/
H A Dmod.rs610 cs: RTCIceConnectionState, in do_ice_connection_state_change()
612 ice_connection_state.store(cs as u8, Ordering::SeqCst); in do_ice_connection_state_change()
614 log::info!("ICE connection state changed: {}", cs); in do_ice_connection_state_change()
617 f(cs).await; in do_ice_connection_state_change()
631 cs: RTCPeerConnectionState, in do_peer_connection_state_change()
635 f(cs).await; in do_peer_connection_state_change()
H A Dpeer_connection_internal.rs1117 let cs = match state { in create_ice_transport() localVariable
1143 cs, in create_ice_transport()
1151 cs, in create_ice_transport()
/webrtc/dtls/src/conn/
H A Dmod.rs158 .map(|cs| cs.id()) in new()
H A Dconn_test.rs1616 if let Some(cs) = &*cipher_suite { in test_cipher_suite_configuration()
1617 assert_eq!(cs.id(), want_cs, in test_cipher_suite_configuration()
1619 name, want_cs, cs.id()); in test_cipher_suite_configuration()