Lines Matching defs:OutputZip
141 type OutputZip struct { struct
142 outputWriter *zip.Writer
143 stripDirEntries bool
144 emulateJar bool
145 sortEntries bool
146 ignoreDuplicates bool
147 excludeDirs []string
148 excludeFiles []string
149 sourceByDest map[string]ZipEntryContents
163 func (oz *OutputZip) setExcludeDirs(excludeDirs []string) {
170 func (oz *OutputZip) setExcludeFiles(excludeFiles []string) {
176 func (oz *OutputZip) addZipEntry(name string, source ZipEntryContents) (ZipEntryContents, error) {
189 func (oz *OutputZip) addManifest(manifestPath string) error {
206 func (oz *OutputZip) addZipEntryFromFile(name string, path string) error {
221 func (oz *OutputZip) addEmptyEntry(entry string) error {
235 func (oz *OutputZip) isEntryExcluded(name string) bool {
276 func (oz *OutputZip) copyEntry(inputZip InputZip, index int) error {
308 func (oz *OutputZip) entriesArray() []string {
318 func (oz *OutputZip) jarSorted() []string {
324 func (oz *OutputZip) alphanumericSorted() []string {
330 func (oz *OutputZip) writeEntries(entries []string) error {
340 func (oz *OutputZip) getUninitializedPythonPackages(inputZips []InputZip) ([]string, error) {