Home
last modified time | relevance | path

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

/webrtc/ice/src/state/
H A Dstate_test.rs31 (GatheringState::Unspecified, "unspecified"), in test_gathering_state_string()
32 (GatheringState::New, "new"), in test_gathering_state_string()
33 (GatheringState::Gathering, "gathering"), in test_gathering_state_string()
34 (GatheringState::Complete, "complete"), in test_gathering_state_string()
H A Dmod.rs72 pub enum GatheringState { enum
85 impl From<u8> for GatheringState { implementation
96 impl Default for GatheringState { implementation
102 impl fmt::Display for GatheringState { implementation
/webrtc/ice/src/agent/
H A Dmod.rs383 if GatheringState::from(self.gathering_state.load(Ordering::SeqCst)) in restart()
384 == GatheringState::Gathering in restart()
389 .store(GatheringState::New as u8, Ordering::SeqCst); in restart()
433 if self.gathering_state.load(Ordering::SeqCst) != GatheringState::New as u8 { in gather_candidates()
H A Dagent_gather.rs83 GatheringState::Gathering, in gather_candidates_internal()
172 GatheringState::Complete, in gather_candidates_internal()
180 new_state: GatheringState, in set_gathering_state() argument
182 if GatheringState::from(gathering_state.load(Ordering::SeqCst)) != new_state in set_gathering_state()
183 && new_state == GatheringState::Complete in set_gathering_state()
H A Dagent_test.rs1775 .store(GatheringState::Gathering as u8, Ordering::SeqCst); in test_agent_restart_during_gather()