Home | History | Annotate | Download | only in zipalign

Lines Matching refs:readSize

848         long readSize;
850 readSize = sizeof(tmpBuf);
851 if (readSize > length)
852 readSize = length;
854 count = fread(tmpBuf, 1, readSize, srcFp);
855 if ((long) count != readSize) { // error or unexpected EOF
856 ALOGD("fread %d bytes failed\n", (int) readSize);
868 length -= readSize;