Home
last modified time | relevance | path

Searched refs:cand (Results 1 – 2 of 2) sorted by relevance

/webrtc/ice/src/agent/
H A Dagent_internal.rs524 for cand in cands { in add_remote_candidate()
525 if cand.equal(&**c) { in add_remote_candidate()
546 for cand in local_cands { in add_remote_candidate()
547 self.add_pair(cand, c.clone()).await; in add_remote_candidate()
568 for cand in cands { in add_candidate()
569 if cand.equal(&**c) { in add_candidate()
598 for cand in remote_cands { in add_candidate()
599 self.add_pair(c.clone(), cand).await; in add_candidate()
1037 let cand = Arc::clone(candidate); in start_candidate() localVariable
1044 .recv_loop(cand, closed_ch_rx, initialized_ch, conn, addr) in start_candidate()
/webrtc/webrtc/src/ice_transport/
H A Dice_gatherer.rs172 if let Some(cand) = candidate { in gather()
175 f(Some(RTCIceCandidate::from(&cand))).await; in gather()