Home | History | Annotate | Download | only in zipalign

Lines Matching refs:fileLength

210     off_t fileLength, seekStart;
215 fileLength = ftell(mZipFp);
219 if (fileLength < EndOfCentralDir::kEOCDLen) {
220 ALOGD("Length is %ld -- too small\n", (long)fileLength);
233 if (fileLength > EndOfCentralDir::kMaxEOCDSearch) {
234 seekStart = fileLength - EndOfCentralDir::kMaxEOCDSearch;
238 readAmount = (long) fileLength;