Home
last modified time | relevance | path

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

/external/rust/crates/quiche/src/
Dstream.rs555 pub fn readable(&self) -> StreamIter { in readable() argument
556 StreamIter::from(&self.readable) in readable()
560 pub fn writable(&self) -> StreamIter { in writable() argument
561 StreamIter::from(&self.writable) in writable()
565 pub fn almost_full(&self) -> StreamIter { in almost_full() argument
566 StreamIter::from(&self.almost_full) in almost_full()
750 pub struct StreamIter { struct
754 impl StreamIter { implementation
757 StreamIter { in from()
763 impl Iterator for StreamIter { implementation
[all …]
Dffi.rs869 pub extern fn quiche_conn_readable(conn: &Connection) -> *mut StreamIter { in quiche_conn_readable() argument
874 pub extern fn quiche_conn_writable(conn: &Connection) -> *mut StreamIter { in quiche_conn_writable() argument
1085 iter: &mut StreamIter, stream_id: *mut u64, in quiche_stream_iter_next() argument
1096 pub extern fn quiche_stream_iter_free(iter: *mut StreamIter) { in quiche_stream_iter_free() argument
Dlib.rs5041 pub fn readable(&self) -> StreamIter { in readable() argument
5077 pub fn writable(&self) -> StreamIter { in writable() argument
5081 return StreamIter::default(); in writable()
15834 pub use crate::stream::StreamIter;