Searched refs:RTCIceGatheringState (Results 1 – 5 of 5) sorted by relevance
| /webrtc/webrtc/src/ice_transport/ |
| H A D | ice_gathering_state.rs | 5 pub enum RTCIceGatheringState { enum 28 impl From<&str> for RTCIceGatheringState { implementation 34 _ => RTCIceGatheringState::Unspecified, in from() 39 impl fmt::Display for RTCIceGatheringState { implementation 44 RTCIceGatheringState::Complete => { in fmt() 60 ("new", RTCIceGatheringState::New), in test_new_ice_gathering_state() 61 ("gathering", RTCIceGatheringState::Gathering), in test_new_ice_gathering_state() 62 ("complete", RTCIceGatheringState::Complete), in test_new_ice_gathering_state() 74 (RTCIceGatheringState::New, "new"), in test_ice_gathering_state_string() 75 (RTCIceGatheringState::Gathering, "gathering"), in test_ice_gathering_state_string() [all …]
|
| /webrtc/webrtc/src/peer_connection/sdp/ |
| H A D | mod.rs | 9 use crate::ice_transport::ice_gathering_state::RTCIceGatheringState; 256 ice_gathering_state: RTCIceGatheringState, in add_candidates_to_media_descriptions() argument 281 if ice_gathering_state != RTCIceGatheringState::Complete { in add_candidates_to_media_descriptions() 298 ice_gathering_state: RTCIceGatheringState, 358 ice_gathering_state: RTCIceGatheringState, in populate_local_candidates() argument 400 ice_gathering_state: RTCIceGatheringState, 642 pub(crate) ice_gathering_state: RTCIceGatheringState,
|
| H A D | sdp_test.rs | 538 ice_gathering_state: RTCIceGatheringState::New, in fingerprint_test() 718 ice_gathering_state: RTCIceGatheringState::Complete, in test_populate_sdp() 812 ice_gathering_state: RTCIceGatheringState::Complete, in test_populate_sdp() 938 ice_gathering_state: RTCIceGatheringState::Complete, in test_populate_sdp_reject()
|
| /webrtc/webrtc/src/peer_connection/ |
| H A D | peer_connection_internal.rs | 830 pub(super) fn ice_gathering_state(&self) -> RTCIceGatheringState { in ice_gathering_state() argument 832 RTCIceGathererState::New => RTCIceGatheringState::New, in ice_gathering_state() 833 RTCIceGathererState::Gathering => RTCIceGatheringState::Gathering, in ice_gathering_state() 834 _ => RTCIceGatheringState::Complete, in ice_gathering_state()
|
| H A D | mod.rs | 37 use crate::ice_transport::ice_gathering_state::RTCIceGatheringState; 2018 pub fn ice_gathering_state(&self) -> RTCIceGatheringState { in ice_gathering_state() argument 2068 if self.ice_gathering_state() == RTCIceGatheringState::Complete { in gathering_complete_promise()
|