Searched refs:iov_base (Results 1 - 18 of 18) sorted by relevance

/seL4-camkes-master/projects/musllibc/src/stdio/
H A D__stdio_write.c7 { .iov_base = f->wbase, .iov_len = f->wpos-f->wbase },
8 { .iov_base = (void *)buf, .iov_len = len }
31 iov[0].iov_base = (char *)iov[0].iov_base + cnt;
H A D__stdio_read.c7 { .iov_base = buf, .iov_len = len - !!f->buf_size },
8 { .iov_base = f->buf, .iov_len = f->buf_size }
/seL4-camkes-master/tools/rumprun/platform/xen/librumpnet_xenif/
H A Dxenif_user.c28 void *iov_base; member in struct:iovec
129 iov.iov_base = mypkt->pkt_data;
198 d = iov->iov_base;
215 bmk_memcpy(d0, iov[i].iov_base, iov[i].iov_len);
H A Dif_virt.c195 io[i].iov_base = mtod(m, void *);
236 m_copyback(m, off, iov[i].iov_len, iov[i].iov_base);
/seL4-camkes-master/projects/lwip/test/unit/api/
H A Dtest_sockets.c255 /* note: this modifies the underyling iov_base and iov_len for a partial
274 msg->msg_iov[0].iov_base = ((u8_t *)msg->msg_iov[0].iov_base + bytes);
354 siovs[i].iov_base = snd_buf;
363 riovs[i].iov_base = &rcv_buf[i*(BUF_SZ/4)];
369 riovs[5].iov_base = &rcv_buf[4*(BUF_SZ/4)];
460 fail_unless(*((u8_t*)rmsg->msg_iov[0].iov_base) == 0xDE);
461 fail_unless(*((u8_t*)rmsg->msg_iov[1].iov_base) == 0xAD);
462 fail_unless(*((u8_t*)rmsg->msg_iov[2].iov_base) == 0xBE);
463 fail_unless(*((u8_t*)rmsg->msg_iov[3].iov_base)
[all...]
/seL4-camkes-master/projects/projects_libs/libmsgpack/msgpack-c/test/
H A Dbuffer.cpp41 sbuf.write((const char*)vec[i].iov_base, vec[i].iov_len);
58 sbuf.write((const char*)vec[i].iov_base, vec[i].iov_len);
H A Dmsgpack_vref.cpp31 sbuf.write((const char*)cur->iov_base, cur->iov_len); \
/seL4-camkes-master/projects/projects_libs/libmsgpack/msgpack-c/include/msgpack/
H A Dvrefbuffer.h20 void *iov_base; member in struct:iovec
H A Dvrefbuffer.hpp29 void *iov_base; member in struct:iovec
130 m_tail->iov_base = const_cast<char*>(buf);
163 const_cast<const void *>((m_tail - 1)->iov_base)
/seL4-camkes-master/projects/musllibc/include/scsi/
H A Dsg.h60 void *iov_base; member in struct:sg_iovec
/seL4-camkes-master/projects/seL4_libs/libsel4muslcsys/src/
H A Dsys_io.c318 ret += stdio_write(iov[i].iov_base, iov[i].iov_len);
336 struct iovec iov = {.iov_base = buf, .iov_len = count };
369 memcpy(iov[i].iov_base, cpio_fd->start + cpio_fd->current, len);
382 struct iovec iov = {.iov_base = buf, .iov_len = count };
H A Dvsyscall.c107 char *UNUSED base = (char *)iov[i].iov_base;
/seL4-camkes-master/projects/projects_libs/libmsgpack/msgpack-c/src/
H A Dvrefbuffer.c118 vbuf->tail->iov_base = (char*)buf;
156 (const char*)((vbuf->tail-1)->iov_base) + (vbuf->tail-1)->iov_len) {
/seL4-camkes-master/projects/camkes-tool/libsel4camkes/src/
H A Dsys_io.c91 io.iov_base = buf;
/seL4-camkes-master/projects/global-components/components/FileServer/libFileServer-client/
H A Dfsclient.c82 memcpy(iov[i].iov_base + iov_offset, ext_buf, read);
/seL4-camkes-master/tools/rumprun/lib/librumprun_base/
H A Dsysproxy.c163 #define IOVPUT(_io_, _b_) _io_.iov_base = \
165 #define IOVPUT_WITHSIZE(_io_, _b_, _l_) _io_.iov_base = \
439 iov[0].iov_base =
440 (void *)((uint8_t *)iov[0].iov_base + n);
/seL4-camkes-master/projects/lwip/src/include/lwip/
H A Dsockets.h122 void *iov_base; member in struct:iovec
/seL4-camkes-master/projects/lwip/src/api/
H A Dsockets.c1136 pbuf_copy_partial(buf->p, (u8_t *)msg->msg_iov[i].iov_base, copylen, copied);
1223 vec.iov_base = mem;
1305 if ((message->msg_iov[i].iov_base == NULL) || ((ssize_t)message->msg_iov[i].iov_len <= 0) ||
1323 ssize_t recvd_local = lwip_recv_tcp(sock, message->msg_iov[i].iov_base, message->msg_iov[i].iov_len, recv_flags);
1505 MEMCPY(&((u8_t *)chain_buf.p->payload)[offset], msg->msg_iov[i].iov_base, msg->msg_iov[i].iov_len);
1531 p->payload = msg->msg_iov[i].iov_base;

Completed in 184 milliseconds