Home
last modified time | relevance | path

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

/webrtc/ice/src/agent/
H A Dagent_stats.rs260 let remote_candidates = self.remote_candidates.lock().await; in get_remote_candidates_stats() localVariable
261 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()
H A Dagent_test.rs285 let remote_candidates = a.internal.remote_candidates.lock().await; in test_handle_peer_reflexive_udp_pflx_candidate() localVariable
371 let remote_candidates = a.internal.remote_candidates.lock().await; in test_handle_peer_reflexive_unknown_remote() localVariable
679 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable
699 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable
728 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable
756 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable
786 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable
819 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable
856 let remote_candidates = a.internal.remote_candidates.lock().await; in test_inbound_validity() localVariable
1364 let mut remote_candidates = a.internal.remote_candidates.lock().await; in test_remote_candidate_stats() localVariable
[all …]
H A Dagent_internal.rs56 pub(crate) remote_candidates: field
151 remote_candidates: Mutex::new(HashMap::new()), in new()
522 let mut remote_candidates = self.remote_candidates.lock().await; in add_remote_candidate() localVariable
523 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() localVariable
593 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() localVariable
673 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 …]
/webrtc/webrtc/src/ice_transport/
H A Dmod.rs265 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()