Home | History | Annotate | Download | only in base

Lines Matching refs:total_read

77   size_t total_read = 0, current_read;
78 while (total_read < buffer_len) {
79 result = Read(static_cast<char*>(buffer) + total_read,
80 buffer_len - total_read, &current_read, error);
83 total_read += current_read;
86 *read = total_read;