Lines Matching defs:bytes_read
367 ssize_t bytes_read =
369 if (bytes_read <= 0)
371 total_read += bytes_read;
560 ssize_t bytes_read = HANDLE_EINTR(read(fd, data, size));
563 return bytes_read;
867 ssize_t bytes_read = HANDLE_EINTR(read(infile, &buffer[0], buffer.size()));
868 if (bytes_read < 0) {
872 if (bytes_read == 0)
880 bytes_read - bytes_written_per_read));
886 } while (bytes_written_per_read < bytes_read);