Home
last modified time | relevance | path

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

/netbsd-src/external/mit/libuv/dist/test/
H A Dtest-fs.c3320 size_t iovcount; in fs_write_alotof_bufs() local
3327 iovcount = 54321; in fs_write_alotof_bufs()
3334 iovs = malloc(sizeof(*iovs) * iovcount); in fs_write_alotof_bufs()
3348 for (index = 0; index < iovcount; ++index) in fs_write_alotof_bufs()
3355 iovcount, in fs_write_alotof_bufs()
3359 ASSERT((size_t)write_req.result == sizeof(test_buf) * iovcount); in fs_write_alotof_bufs()
3363 buffer = malloc(sizeof(test_buf) * iovcount); in fs_write_alotof_bufs()
3366 for (index = 0; index < iovcount; ++index) in fs_write_alotof_bufs()
3381 r = uv_fs_read(NULL, &read_req, open_req1.result, iovs, iovcount, -1, NULL); in fs_write_alotof_bufs()
3382 if (iovcount > iovmax) in fs_write_alotof_bufs()
[all …]
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/unix/
H A Dsocket.c1218 unsigned int iovcount; in build_msghdr_send() local
1235 iovcount = 1; in build_msghdr_send()
1238 msg->msg_iovlen = iovcount; in build_msghdr_send()
1384 unsigned int iovcount; in build_msghdr_recv() local
1402 iovcount = 1; in build_msghdr_recv()
1409 INSIST(iovcount < MAXSCATTERGATHER_RECV); in build_msghdr_recv()
1410 iov[iovcount].iov_base = (void *)(&sock->overflow); in build_msghdr_recv()
1411 iov[iovcount].iov_len = 1; in build_msghdr_recv()
1412 iovcount++; in build_msghdr_recv()
1417 msg->msg_iovlen = iovcount; in build_msghdr_recv()