Home
last modified time | relevance | path

Searched refs:abandoned (Results 1 – 5 of 5) sorted by relevance

/webrtc/sctp/src/chunk/
H A Dchunk_payload_data.rs114 pub(crate) abandoned: Arc<AtomicBool>, field
139 abandoned: Arc::new(AtomicBool::new(false)), in default()
218 abandoned: Arc::new(AtomicBool::new(false)), in unmarshal()
250 pub(crate) fn abandoned(&self) -> bool { in abandoned() method
251 let (abandoned, all_inflight) = ( in abandoned()
252 self.abandoned.load(Ordering::SeqCst), in abandoned()
256 abandoned && all_inflight in abandoned()
259 pub(crate) fn set_abandoned(&self, abandoned: bool) { in set_abandoned()
260 self.abandoned.store(abandoned, Ordering::SeqCst); in set_abandoned()
/webrtc/sctp/src/association/association_internal/
H A Dassociation_internal_test.rs80 abandoned: Arc::new(AtomicBool::new(true)), in test_create_forward_tsn_forward_one_abandoned()
110 abandoned: Arc::new(AtomicBool::new(true)), in test_create_forward_tsn_forward_two_abandoned_with_the_same_si()
121 abandoned: Arc::new(AtomicBool::new(true)), in test_create_forward_tsn_forward_two_abandoned_with_the_same_si()
132 abandoned: Arc::new(AtomicBool::new(true)), in test_create_forward_tsn_forward_two_abandoned_with_the_same_si()
/webrtc/sctp/src/queue/
H A Dpayload_queue.rs163 if c.acked || c.abandoned() { in mark_all_to_retrasmit()
/webrtc/sctp/src/association/
H A Dassociation_internal.rs426 if c.acked || c.abandoned() || c.nsent > 1 || c.miss_indicator < 3 { in gather_outbound_fast_retransmission_packets()
1318 if !c.acked && !c.abandoned() && c.miss_indicator < 3 { in process_fast_retransmission()
1450 if !c.abandoned() { in handle_sack()
2305 if !c.abandoned() { in on_retransmission_timeout()
/webrtc/sctp/src/stream/
H A Dmod.rs338 abandoned: head_abandoned.clone(), // all fragmented chunks use the same abandoned in packetize()