Lines Matching refs:loss_time
94 loss_time: [Option<Instant>; packet::EPOCH_COUNT], field
160 loss_time: [None; packet::EPOCH_COUNT], in new()
436 self.loss_time[epoch] = None; in on_pkt_num_space_discarded()
512 let mut time = self.loss_time[epoch]; in loss_time_and_space()
517 let new_time = self.loss_time[e]; in loss_time_and_space()
599 self.loss_time[epoch] = None; in detect_lost_packets()
650 let loss_time = match self.loss_time[epoch] { in detect_lost_packets() localVariable
653 Some(loss_time) => in detect_lost_packets()
654 cmp::min(loss_time, unacked.time_sent + loss_delay), in detect_lost_packets()
657 self.loss_time[epoch] = Some(loss_time); in detect_lost_packets()
862 write!(f, "loss_time={:?} ", self.loss_time)?; in fmt()