Home | History | Annotate | Download | only in dumpstate

Lines Matching defs:bytes_read

450             ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer)));
451 if (bytes_read > 0) {
452 fwrite(buffer, bytes_read, 1, stdout);
453 newline = (buffer[bytes_read-1] == '\n');
455 if (bytes_read == -1) {
492 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer)));
493 if (bytes_read == -1) {
497 if (bytes_read == 0) {