Home | History | Annotate | Download | only in aapt

Lines Matching refs:fileLength

208     off_t fileLength, seekStart;
213 fileLength = ftell(mZipFp);
217 if (fileLength < EndOfCentralDir::kEOCDLen) {
218 ALOGD("Length is %ld -- too small\n", (long)fileLength);
231 if (fileLength > EndOfCentralDir::kMaxEOCDSearch) {
232 seekStart = fileLength - EndOfCentralDir::kMaxEOCDSearch;
236 readAmount = (long) fileLength;