Home
last modified time | relevance | path

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

/webrtc/sctp/src/association/
H A Dassociation_test.rs277 assert!(!q.is_readable(), "should no longer be readable"); in test_assoc_reliable_simple()
380 assert!(!q.is_readable(), "should no longer be readable"); in test_assoc_reliable_ordered_reordered()
447 assert!(!q.is_readable(), "should no longer be readable"); in test_assoc_reliable_ordered_fragmented_then_defragmented()
514 assert!(!q.is_readable(), "should no longer be readable"); in test_assoc_reliable_unordered_fragmented_then_defragmented()
607 assert!(!q.is_readable(), "should no longer be readable"); in test_assoc_reliable_unordered_ordered()
688 assert!(!q.is_readable(), "should no longer be readable"); in test_assoc_reliable_retransmission()
754 assert!(!q.is_readable(), "should no longer be readable"); in test_assoc_reliable_short_buffer()
844 assert!(!q.is_readable(), "should no longer be readable"); in test_assoc_unreliable_rexmit_ordered_no_fragment()
1371 assert!(q.is_readable(), "should be readable"); in test_assoc_congestion_control_fast_retransmission()
1478 q.is_readable() in test_assoc_congestion_control_congestion_avoidance()
[all …]
/webrtc/sctp/src/stream/
H A Dmod.rs211 let readable = reassembly_queue.is_readable(); in handle_data()
236 reassembly_queue.is_readable() in handle_forward_tsn_for_ordered()
255 reassembly_queue.is_readable() in handle_forward_tsn_for_unordered()
/webrtc/sctp/src/queue/
H A Dreassembly_queue.rs239 pub(crate) fn is_readable(&self) -> bool { in is_readable() method