Lines Matching refs:offset
29 off_t first_offset, offset; member
77 io_uring_prep_readv(sqe, infd, &data->iov, 1, data->offset); in queue_prepped()
79 io_uring_prep_writev(sqe, outfd, &data->iov, 1, data->offset); in queue_prepped()
84 static int queue_read(struct io_uring *ring, off_t size, off_t offset) in queue_read() argument
100 data->offset = data->first_offset = offset; in queue_read()
106 io_uring_prep_readv(sqe, infd, &data->iov, 1, offset); in queue_read()
114 data->offset = data->first_offset; in queue_write()
127 off_t write_left, offset; in copy_file() local
131 writes = reads = offset = 0; in copy_file()
150 if (queue_read(ring, this_size, offset)) in copy_file()
154 offset += this_size; in copy_file()
205 data->offset += cqe->res; in copy_file()