Home
last modified time | relevance | path

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

/webrtc/webrtc/src/ice_transport/
H A Dice_gathering_state.rs5 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 Dmod.rs9 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 Dsdp_test.rs538 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 Dpeer_connection_internal.rs830 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 Dmod.rs37 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()