Lines Matching refs:iov
61 struct iovec iov[IOV_CNT]; in pfkey_send() local
169 iov[iov_cnt].iov_base = &smsg; in pfkey_send()
170 iov[iov_cnt].iov_len = sizeof(smsg); in pfkey_send()
178 iov[iov_cnt].iov_base = &sa; in pfkey_send()
179 iov[iov_cnt].iov_len = sizeof(sa); in pfkey_send()
185 iov[iov_cnt].iov_base = &sa_spirange; in pfkey_send()
186 iov[iov_cnt].iov_len = sizeof(sa_spirange); in pfkey_send()
193 iov[iov_cnt].iov_base = &sa_dst; in pfkey_send()
194 iov[iov_cnt].iov_len = sizeof(sa_dst); in pfkey_send()
196 iov[iov_cnt].iov_base = &sdst; in pfkey_send()
197 iov[iov_cnt].iov_len = ROUNDUP(sdst.ss_len); in pfkey_send()
202 iov[iov_cnt].iov_base = &sa_src; in pfkey_send()
203 iov[iov_cnt].iov_len = sizeof(sa_src); in pfkey_send()
205 iov[iov_cnt].iov_base = &ssrc; in pfkey_send()
206 iov[iov_cnt].iov_len = ROUNDUP(ssrc.ss_len); in pfkey_send()
215 iov[iov_cnt].iov_base = &sa_akey; in pfkey_send()
216 iov[iov_cnt].iov_len = sizeof(sa_akey); in pfkey_send()
218 iov[iov_cnt].iov_base = akey; in pfkey_send()
219 iov[iov_cnt].iov_len = ((alen + 7) / 8) * 8; in pfkey_send()
225 iov[iov_cnt].iov_base = &sa_ekey; in pfkey_send()
226 iov[iov_cnt].iov_len = sizeof(sa_ekey); in pfkey_send()
228 iov[iov_cnt].iov_base = ekey; in pfkey_send()
229 iov[iov_cnt].iov_len = ((elen + 7) / 8) * 8; in pfkey_send()
238 n = writev(sd, iov, iov_cnt); in pfkey_send()