Searched refs:dgram_send (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/quiche/src/ |
D | lib.rs | 3144 pub fn dgram_send(&mut self, buf: &[u8]) -> Result<()> { in dgram_send() method 7465 pipe.client.dgram_send(b"hello, world"), in dgram_send_fails_invalidstate() 7501 assert_eq!(pipe.client.dgram_send(&send_buf), Ok(())); in dgram_send_app_limited() 7549 assert_eq!(pipe.client.dgram_send(b"hello, world"), Ok(())); in dgram_single_datagram() 7587 assert_eq!(pipe.client.dgram_send(b"hello, world"), Ok(())); in dgram_multiple_datagrams() 7588 assert_eq!(pipe.client.dgram_send(b"ciao, mondo"), Ok(())); in dgram_multiple_datagrams() 7589 assert_eq!(pipe.client.dgram_send(b"hola, mundo"), Ok(())); in dgram_multiple_datagrams() 7637 assert_eq!(pipe.client.dgram_send(b"hello, world"), Ok(())); in dgram_send_queue_overflow() 7638 assert_eq!(pipe.client.dgram_send(b"ciao, mondo"), Ok(())); in dgram_send_queue_overflow() 7639 assert_eq!(pipe.client.dgram_send(b"hola, mundo"), Err(Error::Done)); in dgram_send_queue_overflow() [all …]
|
D | ffi.rs | 766 match conn.dgram_send(buf) { in quiche_conn_dgram_send()
|
/external/rust/crates/quiche/src/h3/ |
D | mod.rs | 938 conn.dgram_send(&d)?; in send_dgram()
|