Home
last modified time | relevance | path

Searched refs:EPOCH_COUNT (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/quiche/src/recovery/
Dmod.rs76 time_of_last_sent_ack_eliciting_pkt: [Option<Instant>; packet::EPOCH_COUNT],
78 largest_acked_pkt: [u64; packet::EPOCH_COUNT],
80 largest_sent_pkt: [u64; packet::EPOCH_COUNT],
94 loss_time: [Option<Instant>; packet::EPOCH_COUNT],
96 sent: [VecDeque<Sent>; packet::EPOCH_COUNT],
98 pub lost: [Vec<frame::Frame>; packet::EPOCH_COUNT],
100 pub acked: [Vec<frame::Frame>; packet::EPOCH_COUNT],
104 pub loss_probes: [usize; packet::EPOCH_COUNT],
106 in_flight_count: [usize; packet::EPOCH_COUNT],
138 time_of_last_sent_ack_eliciting_pkt: [None; packet::EPOCH_COUNT], in new()
[all …]
/external/rust/crates/quiche/src/
Dpacket.rs56 pub const EPOCH_COUNT: usize = 3; constant
Dlib.rs789 pkt_num_spaces: [packet::PktNumSpace; packet::EPOCH_COUNT],
3494 for epoch in packet::EPOCH_INITIAL..packet::EPOCH_COUNT { in write_epoch()