Home
last modified time | relevance | path

Searched refs:chan_candidate_tx (Results 1 – 3 of 3) sorted by relevance

/webrtc/ice/src/agent/
H A Dagent_internal.rs33 pub(crate) chan_candidate_tx: ChanCandidateTx, field
87 let (chan_candidate_tx, chan_candidate_rx) = mpsc::channel(1); in new()
105 chan_candidate_tx: Arc::new(Mutex::new(Some(chan_candidate_tx))), in new()
604 let chan_candidate_tx = self.chan_candidate_tx.lock().await; in add_candidate() localVariable
605 if let Some(tx) = &*chan_candidate_tx { in add_candidate()
632 let mut chan_candidate_tx = self.chan_candidate_tx.lock().await; in close() localVariable
633 chan_candidate_tx.take(); in close()
H A Dagent_gather.rs35 pub(crate) chan_candidate_tx: ChanCandidateTx, field
81 &params.chan_candidate_tx, in gather_candidates_internal()
170 &params.chan_candidate_tx, in gather_candidates_internal()
178 chan_candidate_tx: &ChanCandidateTx, in set_gathering_state()
185 let cand_tx = chan_candidate_tx.lock().await; in set_gathering_state()
H A Dmod.rs460 chan_candidate_tx: Arc::clone(&self.internal.chan_candidate_tx), in gather_candidates()