Home | History | Annotate | Download | only in zipalign

Lines Matching defs:fileLength

211     off_t fileLength, seekStart;
216 fileLength = ftell(mZipFp);
220 if (fileLength < EndOfCentralDir::kEOCDLen) {
221 ALOGD("Length is %ld -- too small\n", (long)fileLength);
234 if (fileLength > EndOfCentralDir::kMaxEOCDSearch) {
235 seekStart = fileLength - EndOfCentralDir::kMaxEOCDSearch;
239 readAmount = (long) fileLength;