Home
last modified time | relevance | path

Searched refs:zip64 (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython3/Lib/test/ziptestdata/
DREADME.md26 ### Modern format (4.5) zip64 file
28 Redirecting from stdin forces infozip's zip tool to create a zip64.
31 zip -0 <testdata_module_inside_zip.py >zip64.zip
32 cat header.sh zip64.zip >exe_with_z64
33 rm zip64.zip
/external/zlib/contrib/minizip/
Dzip.h168 int zip64));
211 int zip64));
249 int zip64
298 int zip64
Dzip.c154 int zip64; /* Add ZIP64 extened information in the extra field */ member
969 if(zi->ci.zip64) in Write_LocalFileHeader()
989 if(zi->ci.zip64) in Write_LocalFileHeader()
996 if(zi->ci.zip64) in Write_LocalFileHeader()
1005 if(zi->ci.zip64) in Write_LocalFileHeader()
1026 if ((err==ZIP_OK) && (zi->ci.zip64)) in Write_LocalFileHeader()
1061 uLong versionMadeBy, uLong flagBase, int zip64) in zipOpenNewFileInZip4_64() argument
1182 zi->ci.zip64 = zip64; in zipOpenNewFileInZip4_64()
1301 const char* password, uLong crcForCrypting, int zip64) in zipOpenNewFileInZip3_64() argument
1308 password, crcForCrypting, VERSIONMADEBY, 0, zip64); in zipOpenNewFileInZip3_64()
[all …]
Dminizip.c404 int zip64 = 0; local
422 zip64 = isLargeFile(filenameinzip);
457 password,crcFile, zip64);
/external/v8/third_party/zlib/contrib/minizip/
Dzip.h168 int zip64));
211 int zip64));
249 int zip64
298 int zip64
Dzip.c154 int zip64; /* Add ZIP64 extened information in the extra field */ member
969 if(zi->ci.zip64) in Write_LocalFileHeader()
989 if(zi->ci.zip64) in Write_LocalFileHeader()
996 if(zi->ci.zip64) in Write_LocalFileHeader()
1005 if(zi->ci.zip64) in Write_LocalFileHeader()
1026 if ((err==ZIP_OK) && (zi->ci.zip64)) in Write_LocalFileHeader()
1061 uLong versionMadeBy, uLong flagBase, int zip64) in zipOpenNewFileInZip4_64() argument
1182 zi->ci.zip64 = zip64; in zipOpenNewFileInZip4_64()
1301 const char* password, uLong crcForCrypting, int zip64) in zipOpenNewFileInZip3_64() argument
1308 password, crcForCrypting, VERSIONMADEBY, 0, zip64); in zipOpenNewFileInZip3_64()
[all …]
Dminizip.c404 int zip64 = 0; local
422 zip64 = isLargeFile(filenameinzip);
457 password,crcFile, zip64);
/external/python/cpython2/Lib/
Dzipfile.py329 def FileHeader(self, zip64=None): argument
344 if zip64 is None:
345 zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT
346 if zip64:
351 if not zip64:
1166 zip64 = self._allowZip64 and \
1168 self.fp.write(zinfo.FileHeader(zip64))
1194 if not zip64 and self._allowZip64:
1203 self.fp.write(zinfo.FileHeader(zip64))
1244 zip64 = zinfo.file_size > ZIP64_LIMIT or \
[all …]
/external/chromium-trace/catapult/third_party/zipfile/
Dzipfile_2_7_13.py329 def FileHeader(self, zip64=None): argument
344 if zip64 is None:
345 zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT
346 if zip64:
351 if not zip64:
1169 zip64 = self._allowZip64 and \
1171 self.fp.write(zinfo.FileHeader(zip64))
1197 if not zip64 and self._allowZip64:
1206 self.fp.write(zinfo.FileHeader(zip64))
1247 zip64 = zinfo.file_size > ZIP64_LIMIT or \
[all …]
/external/python/cpython3/Lib/
Dzipfile.py407 def FileHeader(self, zip64=None): argument
423 if zip64 is None:
424 zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT
425 if zip64:
430 if not zip64:
1113 def __init__(self, zf, zinfo, zip64): argument
1115 self._zip64 = zip64
1602 zip64 = self._allowZip64 and \
1612 self.fp.write(zinfo.FileHeader(zip64))
1615 return _ZipWriteFile(self, zinfo, zip64)
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DZipArchiveOutputStream.java1489 …private int versionNeededToExtract(final int zipMethod, final boolean zip64, final boolean usedDat… in versionNeededToExtract() argument
1490 if (zip64) { in versionNeededToExtract()
/external/python/cpython3/Misc/NEWS.d/
D3.8.1rc1.rst447 Improve error reporting for corrupt zip files with bad zip64 extra data.
/external/apache-commons-compress/src/changes/
Drelease-notes.vm339 o Parsing of zip64 extra fields has become more lenient in order
/external/apache-commons-compress/
DRELEASE-NOTES.txt739 o Parsing of zip64 extra fields has become more lenient in order