Lines Matching defs:OutputZip
143 type OutputZip struct { struct
144 outputWriter *zip.Writer
145 stripDirEntries bool
146 emulateJar bool
147 sortEntries bool
148 ignoreDuplicates bool
149 excludeDirs []string
150 excludeFiles []string
151 sourceByDest map[string]ZipEntryContents
165 func (oz *OutputZip) setExcludeDirs(excludeDirs []string) {
172 func (oz *OutputZip) setExcludeFiles(excludeFiles []string) {
178 func (oz *OutputZip) addZipEntry(name string, source ZipEntryContents) (ZipEntryContents, error) {
191 func (oz *OutputZip) addManifest(manifestPath string) error {
208 func (oz *OutputZip) addZipEntryFromFile(name string, path string) error {
223 func (oz *OutputZip) addEmptyEntry(entry string) error {
237 func (oz *OutputZip) isEntryExcluded(name string) bool {
278 func (oz *OutputZip) copyEntry(inputZip InputZip, index int) error {
310 func (oz *OutputZip) entriesArray() []string {
320 func (oz *OutputZip) jarSorted() []string {
326 func (oz *OutputZip) alphanumericSorted() []string {
332 func (oz *OutputZip) writeEntries(entries []string) error {
342 func (oz *OutputZip) getUninitializedPythonPackages(inputZips []InputZip) ([]string, error) {