archive/zip.FileHeader.Flags (field)

10 uses

	archive/zip (current package)
		reader.go#L60: 	return f.Flags&0x8 != 0
		reader.go#L279: 	f.Flags = b.uint16()
		reader.go#L317: 		f.NonUTF8 = f.Flags&0x800 == 0
		struct.go#L113: 	Flags          uint16
		writer.go#L96: 		b.uint16(h.Flags)
		writer.go#L286: 		fh.Flags &^= 0x800
		writer.go#L288: 		fh.Flags |= 0x800
		writer.go#L337: 		fh.Flags &^= 0x8 // we will not write a data descriptor
		writer.go#L347: 		fh.Flags |= 0x8 // we will write a data descriptor
		writer.go#L389: 	b.uint16(h.Flags)