Home
last modified time | relevance | path

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

/webrtc/util/src/vnet/
H A Dchunk.rs95 fn get_timestamp(&self) -> SystemTime; // used by router in get_timestamp() method
123 fn get_timestamp(&self) -> SystemTime { in get_timestamp() method
166 fn get_timestamp(&self) -> SystemTime { in get_timestamp() method
167 self.chunk_ip.get_timestamp() in get_timestamp()
273 fn get_timestamp(&self) -> SystemTime { in get_timestamp() method
274 self.chunk_ip.get_timestamp() in get_timestamp()
H A Drouter.rs462 if c.get_timestamp().duration_since(cut_off).is_ok() { in process_chunks()
465 let next_expire = c.get_timestamp().add(min_delay); in process_chunks()
/webrtc/util/src/vnet/chunk/
H A Dchunk_test.rs39 assert_eq!(ts, c.get_timestamp(), "timestamp should match"); in test_chunk_udp()
/webrtc/util/src/vnet/router/
H A Drouter_test.rs59 .duration_since(c.get_timestamp()) in on_inbound_chunk()