Home | History | Annotate | Download | only in jit

Lines Matching refs:bytes_read

710     int bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer, byte_count));
711 if (bytes_read == 0) {
714 } else if (bytes_read < 0) {
718 byte_count -= bytes_read;
719 buffer += bytes_read;