Lines Matching defs:this_read
303 ssize_t this_read;
306 this_read = read(fd, filebuf, this_size);
307 if (this_read <= 0 || this_read > this_size)
310 for (i = 0; i < this_read; i++)
313 size -= this_read;
404 ssize_t this_read;
407 this_read = read(file, filebuf, this_size);
408 if (this_read <= 0 || this_read > this_size) {
413 if (fwrite(filebuf, this_read, 1, stdout) != 1) {
417 offset += this_read;
418 size -= this_read;