Lines Matching full:zip
15 package zip package
38 "android/soong/third_party/zip"
49 // Size of the ZIP compression window (32KB)
227 fh *zip.FileHeader
260 // Have Glob follow symlinks if they are not being stored as symlinks in the zip file.
356 // Zip creates an output zip archive from given sources.
357 func Zip(args ZipArgs) error { func
420 zipMethod := zip.Deflate
422 zipMethod = zip.Store
449 // the the layout of your zip file. 1000 was chosen mostly at random as
468 pathMappings = append(pathMappings, pathMapping{jar.ManifestFile, manifest, zip.Deflate})
490 zipw := zip.NewWriter(f)
525 if op.fh.Method == zip.Deflate {
579 // imports (possibly with compression) <src> into the zip at sub-path <dest>
639 // ignore errors for now, leaving the file at in its original location in the zip
653 header := &zip.FileHeader{
712 func (z *ZipWriter) writeFileContents(header *zip.FileHeader, r pathtools.ReaderAtSeekerCloser) (er…
734 if header.Method == zip.Deflate && fileSize >= minParallelFileSize {
745 // than the compression. Due to the Go Zip API, we also need to
888 if ze.fh.Method == zip.Deflate {
902 ze.fh.Method = zip.Store
911 ze.fh.Method = zip.Store
924 // the directory entry to the zip file if directories are enabled.
950 var dirHeader *zip.FileHeader
955 dirHeader = &zip.FileHeader{
976 fileHeader := &zip.FileHeader{