Home | History | Annotate | Download | only in androidfw

Lines Matching refs:toWrite

682         off64_t toWrite = s.st_size;
683 while (toWrite > 0) {
684 size_t toRead = (toWrite < BUFSIZE) ? toWrite : BUFSIZE;
692 ALOGE("EOF but expect %lld more bytes in [%s]", (long long) toWrite,
708 toWrite -= nRead;