Home | History | Annotate | Download | only in zipalign

Lines Matching defs:readSize

817         long readSize;
819 readSize = sizeof(tmpBuf);
820 if (readSize > length)
821 readSize = length;
823 count = fread(tmpBuf, 1, readSize, srcFp);
824 if ((long) count != readSize) { // error or unexpected EOF
825 ALOGD("fread %d bytes failed\n", (int) readSize);
837 length -= readSize;