/external/fio/engines/ |
sync.c | 23 struct iovec *iovecs; member in struct:syncio_data 76 struct iovec *iov = &sd->iovecs[0]; 181 sd->iovecs[idx].iov_base = io_u->xfer_buf; 182 sd->iovecs[idx].iov_len = io_u->xfer_buflen; 290 ret = readv(f->fd, sd->iovecs, sd->queued); 292 ret = writev(f->fd, sd->iovecs, sd->queued); 307 sd->iovecs = malloc(td->o.iodepth * sizeof(struct iovec)); 318 free(sd->iovecs);
|
/external/chromium_org/net/quic/ |
quic_stream_sequencer_test.cc | 72 iovec iovecs[5]; local 73 size_t num_iovecs = sequencer_->GetReadableRegions(iovecs, 74 arraysize(iovecs)); 75 return VerifyIovecs(iovecs, num_iovecs, expected, num_expected); 78 bool VerifyIovecs(iovec* iovecs, 83 LOG(ERROR) << "Incorrect number of iovecs. Expected: " 88 if (!VerifyIovec(iovecs[i], expected[i])) {
|
quic_stream_sequencer.h | 44 // Fills in up to iov_len iovecs with the next readable regions. Returns the
|
iovector.h | 193 // actual buffers that the struct iovecs point to, copies and assignments
|
/external/qemu/util/ |
iov.c | 296 * Concatenates (partial) iovecs from src_iov to the end of dst. 330 * Concatenates (partial) iovecs from src to the end of dst.
|
/external/qemu/include/qemu/ |
iov.h | 2 * Helpers for using (partial) iovecs.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/ |
fuse.h | 195 * FUSE_IOCTL_RETRY: retry with new iovecs
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
fuse.h | 195 * FUSE_IOCTL_RETRY: retry with new iovecs
|
/system/core/liblog/ |
fake_log_device.c | 449 * Create an array of iovecs large enough to write all of 461 numVecs = numLines*3; // 3 iovecs per line. 535 /* if we allocated storage for the iovecs, free it */
|
/external/kernel-headers/original/uapi/linux/ |
fuse.h | 282 * FUSE_IOCTL_RETRY: retry with new iovecs
|
/external/chromium_org/components/breakpad/app/ |
breakpad_linux.cc | 269 // Flush any pending iovecs to the output file. [all...] |