Home
last modified time | relevance | path

Searched refs:send_iovec (Results 1 – 2 of 2) sorted by relevance

/external/usrsctp/usrsctplib/
Duser_socket.c3057 WSABUF send_iovec[MAXLEN_MBUF_CHAIN]; local
3060 struct iovec send_iovec[MAXLEN_MBUF_CHAIN]; local
3127 send_iovec[iovcnt].iov_base = (caddr_t)m->m_data;
3128 send_iovec[iovcnt].iov_len = SCTP_BUF_LEN(m);
3129 send_count += send_iovec[iovcnt].iov_len;
3131 send_iovec[iovcnt].buf = (caddr_t)m->m_data;
3132 send_iovec[iovcnt].len = SCTP_BUF_LEN(m);
3133 send_count += send_iovec[iovcnt].len;
3145 msg_hdr.msg_iov = send_iovec;
3164 win_msg_hdr.lpBuffers = (LPWSABUF)send_iovec;
[all …]
/external/rust/crates/vmm_vhost/src/vhost_user/
Dconnection.rs124 pub fn send_iovec(&mut self, iovs: &[&[u8]], fds: Option<&[RawFd]>) -> Result<usize> { in send_iovec() method
154 let sent = self.send_iovec(data, sfds); in send_iovec_all()
175 self.send_iovec(&[data], fds) in send_slice()