Home | History | Annotate | Download | only in utils

Lines Matching refs:toWrite

685         off64_t toWrite = s.st_size;
686 while (toWrite > 0) {
687 size_t toRead = (toWrite < BUFSIZE) ? toWrite : BUFSIZE;
695 LOGE("EOF but expect %lld more bytes in [%s]", (long long) toWrite,
711 toWrite -= nRead;