Lines Matching defs:OutputZip
139 type OutputZip struct { struct
140 outputWriter *zip.Writer
141 stripDirEntries bool
142 emulateJar bool
143 sortEntries bool
144 ignoreDuplicates bool
145 excludeDirs []string
146 excludeFiles []string
147 sourceByDest map[string]ZipEntryContents
161 func (oz *OutputZip) setExcludeDirs(excludeDirs []string) {
168 func (oz *OutputZip) setExcludeFiles(excludeFiles []string) {
174 func (oz *OutputZip) addZipEntry(name string, source ZipEntryContents) (ZipEntryContents, error) {
187 func (oz *OutputZip) addManifest(manifestPath string) error {
204 func (oz *OutputZip) addZipEntryFromFile(name string, path string) error {
219 func (oz *OutputZip) addEmptyEntry(entry string) error {
233 func (oz *OutputZip) isEntryExcluded(name string) bool {
274 func (oz *OutputZip) copyEntry(inputZip InputZip, index int) error {
306 func (oz *OutputZip) entriesArray() []string {
316 func (oz *OutputZip) jarSorted() []string {
322 func (oz *OutputZip) alphanumericSorted() []string {
328 func (oz *OutputZip) writeEntries(entries []string) error {
338 func (oz *OutputZip) getUninitializedPythonPackages(inputZips []InputZip) ([]string, error) {