Home | History | Annotate | Download | only in src

Lines Matching refs:bytes_read

1086   size_t bytes_read = 0;       // # of bytes read so far
1093 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
1094 bytes_read += bytes_last_read;
1095 } while (bytes_last_read > 0 && bytes_read < file_size);
1097 const std::string content(buffer, bytes_read);