Lines Matching defs:data
57 * as using TLS. If successful, then data sent using this socket will
62 * as using TLS. If successful, then data received for this socket will
86 const void *data, size_t length)
92 struct iovec msg_iov; /* Vector of data to send/receive into */
103 msg_iov.iov_base = (void *)data;
113 static ossl_inline int ktls_read_record(int fd, void *data, size_t length)
127 static ossl_inline int ktls_read_record(int fd, void *data, size_t length)
134 struct iovec msg_iov; /* Vector of data to send/receive into */
136 unsigned char *p = data;
185 * KTLS enables the sendfile system call to send data from a file over
209 # warning "Skipping Compilation of KTLS receive data path"
278 * If successful, then data sent using this socket will be encrypted and
281 * If successful, then data received using this socket will be decrypted,
299 const void *data, size_t length)
308 struct iovec msg_iov; /* Vector of data to send/receive into */
320 msg_iov.iov_base = (void *)data;
329 * KTLS enables the sendfile system call to send data from a file over TLS.
340 static ossl_inline int ktls_read_record(int fd, void *data, size_t length)
350 * returning only the plaintext data or an error on failure.
353 static ossl_inline int ktls_read_record(int fd, void *data, size_t length)
363 unsigned char *p = data;