Home
last modified time | relevance | path

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

/webrtc/ice/src/state/
H A Dstate_test.rs37 for (gathering_state, expected_string) in tests { in test_gathering_state_string()
39 gathering_state.to_string(), in test_gathering_state_string()
/webrtc/ice/src/agent/
H A Dmod.rs108 pub(crate) gathering_state: Arc<AtomicU8>, //GatheringState, field
202 gathering_state: Arc::new(AtomicU8::new(0)), //GatheringState::New, in new()
383 if GatheringState::from(self.gathering_state.load(Ordering::SeqCst)) in restart()
388 self.gathering_state in restart()
433 if self.gathering_state.load(Ordering::SeqCst) != GatheringState::New as u8 { in gather_candidates()
459 gathering_state: Arc::clone(&self.gathering_state), in gather_candidates()
H A Dagent_gather.rs34 pub(crate) gathering_state: Arc<AtomicU8>, field
82 &params.gathering_state, in gather_candidates_internal()
171 &params.gathering_state, in gather_candidates_internal()
179 gathering_state: &Arc<AtomicU8>, in set_gathering_state()
182 if GatheringState::from(gathering_state.load(Ordering::SeqCst)) != new_state in set_gathering_state()
191 gathering_state.store(new_state as u8, Ordering::SeqCst); in set_gathering_state()
H A Dagent_test.rs1774 .gathering_state in test_agent_restart_during_gather()