Home | History | Annotate | Download | only in zipalign

Lines Matching refs:readSize

851         long readSize;
853 readSize = sizeof(tmpBuf);
854 if (readSize > length)
855 readSize = length;
857 count = fread(tmpBuf, 1, readSize, srcFp);
858 if ((long) count != readSize) { // error or unexpected EOF
859 ALOGD("fread %d bytes failed\n", (int) readSize);
871 length -= readSize;