Home | History | Annotate | Download | only in zipalign

Lines Matching refs:readSize

820         long readSize;
822 readSize = sizeof(tmpBuf);
823 if (readSize > length)
824 readSize = length;
826 count = fread(tmpBuf, 1, readSize, srcFp);
827 if ((long) count != readSize) { // error or unexpected EOF
828 ALOGD("fread %d bytes failed\n", (int) readSize);
840 length -= readSize;