Lines Matching refs:dgram_send
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()
7685 assert_eq!(pipe.client.dgram_send(b"hello, world"), Ok(())); in dgram_recv_queue_overflow()
7686 assert_eq!(pipe.client.dgram_send(b"ciao, mondo"), Ok(())); in dgram_recv_queue_overflow()
7687 assert_eq!(pipe.client.dgram_send(b"hola, mundo"), Ok(())); in dgram_recv_queue_overflow()
7740 assert_eq!(pipe.client.dgram_send(&dgram_packet), Ok(())); in dgram_send_max_size()