Searched refs:remote_candidates (Results 1 – 4 of 4) sorted by relevance
260 let remote_candidates = self.remote_candidates.lock().await; in get_remote_candidates_stats() localVariable261 let mut res = Vec::with_capacity(remote_candidates.len()); in get_remote_candidates_stats()262 for (network_type, remote_candidates) in &*remote_candidates { in get_remote_candidates_stats()263 for c in remote_candidates { in get_remote_candidates_stats()
285 let remote_candidates = a.internal.remote_candidates.lock().await; in test_handle_peer_reflexive_udp_pflx_candidate() localVariable371 let remote_candidates = a.internal.remote_candidates.lock().await; in test_handle_peer_reflexive_unknown_remote() localVariable679 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable699 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable728 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable756 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable786 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable819 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable856 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable1364 let mut remote_candidates = a.internal.remote_candidates.lock().await; in test_remote_candidate_stats() localVariable[all …]
56 pub(crate) remote_candidates: field151 remote_candidates: Mutex::new(HashMap::new()), in new()522 let mut remote_candidates = self.remote_candidates.lock().await; in add_remote_candidate() localVariable523 if let Some(cands) = remote_candidates.get(&network_type) { in add_remote_candidate()592 let remote_candidates = self.remote_candidates.lock().await; in add_candidate() localVariable593 if let Some(cands) = remote_candidates.get(&network_type) { in add_candidate()672 let mut remote_candidates = self.remote_candidates.lock().await; in delete_all_candidates() localVariable673 for cs in remote_candidates.values_mut() { in delete_all_candidates()685 remote_candidates.clear(); in delete_all_candidates()696 let remote_candidates = self.remote_candidates.lock().await; in find_remote_candidate() localVariable[all …]
265 pub async fn set_remote_candidates(&self, remote_candidates: &[RTCIceCandidate]) -> Result<()> { in set_remote_candidates()269 for rc in remote_candidates { in set_remote_candidates()