Lines Matching refs:bytes_read
1068 size_t bytes_read = 0; // # of bytes read so far1075 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);1076 bytes_read += bytes_last_read;1077 } while (bytes_last_read > 0 && bytes_read < file_size);1079 const std::string content(buffer, bytes_read);