Home | History | Annotate | Download | only in base

Lines Matching refs:total_read

60   size_t total_read = 0, current_read;
61 while (total_read < buffer_len) {
62 result = Read(static_cast<char*>(buffer) + total_read,
63 buffer_len - total_read, &current_read, error);
66 total_read += current_read;
69 *read = total_read;