Home
last modified time | relevance | path

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

/webrtc/ice/src/candidate/
H A Dcandidate_base.rs50 pub(crate) last_received: AtomicU64, field
80 last_received: AtomicU64::new(0), in default()
151 fn last_received(&self) -> SystemTime { in last_received() method
153 self.last_received.load(Ordering::SeqCst), in last_received()
318 self.last_received in set_last_received()
H A Dcandidate_test.rs129 assert_eq!(candidate.last_received(), UNIX_EPOCH); in test_candidate_last_received()
134 assert_eq!(candidate.last_received(), now); in test_candidate_last_received()
H A Dmod.rs57 fn last_received(&self) -> SystemTime; in last_received() method
/webrtc/ice/src/agent/
H A Dagent_internal.rs445 .duration_since(selected_pair.remote.last_received()) in validate_selected_pair()
498 let last_received = SystemTime::now() in check_keepalive() localVariable
499 .duration_since(remote.last_received()) in check_keepalive()
504 || (last_received > self.keepalive_interval)) in check_keepalive()