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)
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |