Home | History | Annotate | Download | only in gzip

Lines Matching refs:GZIP

5 package gzip
17 // "compress/gzip" does not also have to import "compress/flate".
62 return nil, fmt.Errorf("gzip: invalid compression level: %d", level)
95 return errors.New("gzip.Write: Extra data is too large")
106 // writeString writes a UTF-8 string s in GZIP's format to z.w.
107 // GZIP (RFC 1952) specifies that strings are NUL-terminated ISO 8859-1 (Latin-1).
109 // GZIP stores Latin-1 strings; error if non-Latin-1; convert if non-ASCII.
113 return errors.New("gzip.Write: non-Latin-1 header string")
131 // GZIP strings are NUL-terminated.
144 // Write the GZIP header lazily.
226 // io.Writer and writing the GZIP footer.