Home | History | Annotate | Download | only in libziparchive

Lines Matching defs:file_length

450                                     ZipArchive* archive, off64_t file_length,
452 const off64_t search_start = file_length - read_amount;
494 if (calculated_length != file_length) {
496 static_cast<int64_t>(file_length - calculated_length));
551 off64_t file_length = lseek64(fd, 0, SEEK_END);
552 if (file_length == -1) {
557 if (file_length > (off64_t) 0xffffffff) {
558 ALOGV("Zip: zip file too long %" PRId64, static_cast<int64_t>(file_length));
562 if (file_length < static_cast<off64_t>(sizeof(EocdRecord))) {
563 ALOGV("Zip: length %" PRId64 " is too small to be zip", static_cast<int64_t>(file_length));
580 if (file_length < read_amount) {
581 read_amount = file_length;
586 file_length, read_amount, scan_buffer);