Searched refs:iovecs (Results 1 - 4 of 4) sorted by relevance

/haiku/headers/private/net/
H A Dnet_buffer.h96 struct iovec* iovecs, uint32 vecCount);
98 struct iovec* iovecs, uint32 vecCount);
/haiku/src/add-ons/kernel/drivers/disk/nvme/
H A Dnvme_disk.cpp466 physical_entry* iovecs; member in struct:nvme_io_request
480 while (offset > 0 && request->iovecs[i].size <= offset) {
481 offset -= request->iovecs[i].size;
496 *address = request->iovecs[index].address + request->iovec_offset;
497 *length = request->iovecs[index].size - request->iovec_offset;
584 nvme_request.iovecs = (physical_entry*)operation.Vecs();
654 nvme_request.iovecs = vtophys = (physical_entry*)malloc(sizeof(physical_entry)
657 TRACE_ERROR("failed to allocate memory for iovecs\n");
675 nvme_request.iovecs = vtophys = (physical_entry*)realloc(vtophys,
695 nvme_request.iovecs
[all...]
/haiku/src/add-ons/kernel/network/stack/
H A Dsimple_net_buffer.cpp628 get_iovecs(net_buffer *_buffer, struct iovec *iovecs, uint32 vecCount) argument
632 iovecs[0].iov_base = buffer->data;
633 iovecs[0].iov_len = buffer->size;
H A Dnet_buffer.cpp2262 get_iovecs(net_buffer* _buffer, struct iovec* iovecs, uint32 vecCount) argument
2270 iovecs[count].iov_base = node->start;
2271 iovecs[count].iov_len = node->used;

Completed in 57 milliseconds