Home
last modified time | relevance | path

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

/external/zlib/src/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);
DMiniZip64_info.txt51 …* To be able to use BZip compression method in zip64.c or unzip64.c the BZIP2 lib is needed and HA…
/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:
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/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.py384 def FileHeader(self, zip64=None): argument
400 if zip64 is None:
401 zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT
402 if zip64:
407 if not zip64:
965 def __init__(self, zf, zinfo, zip64): argument
967 self._zip64 = zip64
1452 zip64 = self._allowZip64 and \
1462 self.fp.write(zinfo.FileHeader(zip64))
1465 return _ZipWriteFile(self, zinfo, zip64)