Lines Matching defs:this_read
336 ssize_t this_read;
339 this_read = read(fd, filebuf, this_size);
340 if (this_read <= 0 || this_read > this_size)
343 for (i = 0; i < this_read; i++)
346 size -= this_read;
367 ssize_t this_read;
457 this_read = copy_file_range(file, NULL, outfd, NULL, size, 0);
458 if (this_read > 0) {
459 if (this_read > size)
461 offset += this_read;
462 size -= this_read;
471 this_read = read(file, filebuf, this_size);
472 if (this_read <= 0 || this_read > this_size) {
477 if (write(outfd, filebuf, this_read) != this_read) {
481 offset += this_read;
482 size -= this_read;