/external/python/cpython3/Lib/test/ziptestdata/ |
D | README.md | 26 ### 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/ |
D | zip.h | 168 int zip64)); 211 int zip64)); 249 int zip64 298 int zip64
|
D | zip.c | 154 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 …]
|
D | minizip.c | 404 int zip64 = 0; local 422 zip64 = isLargeFile(filenameinzip); 457 password,crcFile, zip64);
|
/external/v8/third_party/zlib/contrib/minizip/ |
D | zip.h | 168 int zip64)); 211 int zip64)); 249 int zip64 298 int zip64
|
D | zip.c | 154 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 …]
|
D | minizip.c | 404 int zip64 = 0; local 422 zip64 = isLargeFile(filenameinzip); 457 password,crcFile, zip64);
|
/external/python/cpython2/Lib/ |
D | zipfile.py | 329 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/ |
D | zipfile_2_7_13.py | 329 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/ |
D | zipfile.py | 407 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/ |
D | ZipArchiveOutputStream.java | 1489 …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/ |
D | 3.8.1rc1.rst | 447 Improve error reporting for corrupt zip files with bad zip64 extra data.
|
/external/apache-commons-compress/src/changes/ |
D | release-notes.vm | 339 o Parsing of zip64 extra fields has become more lenient in order
|
/external/apache-commons-compress/ |
D | RELEASE-NOTES.txt | 739 o Parsing of zip64 extra fields has become more lenient in order
|