Lines Matching refs:buffer
410 // Since we are sending the buffer of size 13, six UDP packets
893 // allocate buffer for encrypted data
909 // allocate buffer for decrypted data
989 // allocate buffer for encrypted data
1014 // allocate buffer for decrypted data
1018 // authentication tag memory is only needed in the output buffer for encryption
1019 // and in the input buffer for decryption.
1020 // Do not block on read, as we may have fewer bytes than buffer size
1400 /// Ensure that passing a an oversized control message buffer to recvmsg
2224 let mut buffer = vec![0u8; message.len()];
2227 let mut iov = [IoSliceMut::new(&mut buffer)];
2279 let mut buffer = vec![0u8; message.len()];
2281 let iov = vec![[IoSliceMut::new(&mut buffer)]];
2342 // Set the receiver buffer size to hold only 2 messages.
2351 // Send the 3 messages (the receiver buffer can only hold 2 messages)
2361 let mut buffer = vec![0u8; message.len()];
2364 let mut iov = [IoSliceMut::new(&mut buffer)];