Home | History | Annotate | Download | only in base

Lines Matching refs:bytes_read

66                              DWORD bytes_read, DWORD error);
95 MessageLoopForIO::IOContext* context, DWORD bytes_read, DWORD error) {
104 int result = static_cast<int>(bytes_read);
108 if (bytes_read)
109 IncrementOffset(&context->overlapped, bytes_read);
227 DWORD bytes_read;
228 if (!ReadFile(file_, buf, buf_len, &bytes_read, overlapped)) {
243 rv = static_cast<int>(bytes_read);
253 int bytes_read = Read(buf, to_read, NULL);
254 if (bytes_read <= 0) {
256 return bytes_read;
261 bytes_total += bytes_read;
262 buf += bytes_read;
263 to_read -= bytes_read;