Home
last modified time | relevance | path

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

/webrtc/webrtc/src/peer_connection/
H A Dmod.rs964 sd: &RTCSessionDescription, in set_description()
980 match sd.sdp_type { in set_description()
994 sd.sdp_type, in set_description()
1018 sd.sdp_type, in set_description()
1051 sd.sdp_type, in set_description()
1073 sd.sdp_type, in set_description()
1087 match sd.sdp_type { in set_description()
1094 sd.sdp_type, in set_description()
1110 sd.sdp_type, in set_description()
1143 sd.sdp_type, in set_description()
[all …]
/webrtc/webrtc/src/peer_connection/sdp/
H A Dsession_description.rs137 if let Ok(sd) = result { in test_session_description_json()
138 assert!(sd.sdp == desc.sdp && sd.sdp_type == desc.sdp_type); in test_session_description_json()
H A Dmod.rs364 if let (Some(sd), Some(ice)) = (session_description, ice_gatherer) { in populate_local_candidates()
367 Err(_) => return Some(sd.clone()), in populate_local_candidates()
370 let mut parsed = match sd.unmarshal() { in populate_local_candidates()
372 Err(_) => return Some(sd.clone()), in populate_local_candidates()
381 Err(_) => return Some(sd.clone()), in populate_local_candidates()
387 sdp_type: sd.sdp_type, in populate_local_candidates()
/webrtc/sdp/src/description/
H A Ddescription_test.rs48 let sd = SessionDescription { in test_marshal() localVariable
173 let actual = sd.marshal(); in test_marshal()