/external/python/cpython2/Modules/zlib/ |
ChangeLog | 179 - Fix bug in gzgets() for a concatenated empty gzip stream 181 - Change gzread() and related to ignore junk after gzip streams 184 - Simplify gzseek() now that raw after gzip is ignored 501 - Add pigz.c (parallel implementation of gzip) to examples/ 573 - Set extra flags in gzip header in gzopen() like deflate() does [all...] |
/prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/ |
profile.go | 21 "compress/gzip" 142 // may be a gzip-compressed encoded protobuf or one of many legacy 158 gz, err := gzip.NewReader(bytes.NewBuffer(data)) 315 // Write writes the profile as a gzip-compressed marshaled protobuf. 317 zw := gzip.NewWriter(w)
|
/prebuilts/go/darwin-x86/src/runtime/pprof/internal/profile/ |
profile.go | 14 "compress/gzip" 121 // may be a gzip-compressed encoded protobuf or one of many legacy 131 gz, err := gzip.NewReader(bytes.NewBuffer(orig)) 217 // Write writes the profile as a gzip-compressed marshaled protobuf. 221 zw := gzip.NewWriter(w)
|
/prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/ |
profile.go | 21 "compress/gzip" 142 // may be a gzip-compressed encoded protobuf or one of many legacy 158 gz, err := gzip.NewReader(bytes.NewBuffer(data)) 315 // Write writes the profile as a gzip-compressed marshaled protobuf. 317 zw := gzip.NewWriter(w)
|
/prebuilts/go/linux-x86/src/runtime/pprof/internal/profile/ |
profile.go | 14 "compress/gzip" 121 // may be a gzip-compressed encoded protobuf or one of many legacy 131 gz, err := gzip.NewReader(bytes.NewBuffer(orig)) 217 // Write writes the profile as a gzip-compressed marshaled protobuf. 221 zw := gzip.NewWriter(w)
|
/toolchain/binutils/binutils-2.27/zlib/ |
ChangeLog | 179 - Fix bug in gzgets() for a concatenated empty gzip stream 181 - Change gzread() and related to ignore junk after gzip streams 184 - Simplify gzseek() now that raw after gzip is ignored 501 - Add pigz.c (parallel implementation of gzip) to examples/ 573 - Set extra flags in gzip header in gzopen() like deflate() does [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_tarfile.py | 17 import gzip
18 gzip.GzipFile
20 gzip = None
variable 184 _open = gzip.GzipFile
238 _open = gzip.GzipFile
258 # For Gzip and Bz2 Tests: fail with a ReadError on an uncompressed file.
413 if gzip:
[all...] |
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
3e9a6b4239a388442eba421108c1307e.0000597c.honggfuzz.cov | 5 Accept-Encoding: gzip, deflate, ??
11 Accept-Encoding: gzip, deflate, br
12 Accept-Language: en-US,en;ccept-Encoding: gzip, deflate, br
|
4fb6b99ecad3217a675be14973863717.000026f2.honggfuzz.cov | 4 Accept-encoding: gzip, *;q=0.8
6 Accept-Encoding: gzip, *;q=0.8
8 Accept-Encoding: gzip, deflate, ??
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
3e9a6b4239a388442eba421108c1307e.0000597c.honggfuzz.cov | 5 Accept-Encoding: gzip, deflate, ??
11 Accept-Encoding: gzip, deflate, br
12 Accept-Language: en-US,en;ccept-Encoding: gzip, deflate, br
|
4fb6b99ecad3217a675be14973863717.000026f2.honggfuzz.cov | 4 Accept-encoding: gzip, *;q=0.8
6 Accept-Encoding: gzip, *;q=0.8
8 Accept-Encoding: gzip, deflate, ??
|
/external/libcups/cups/ |
file.c | 7 * different line endings, gzip'd print files, PPD files, etc. 1205 * Open a compressed stream, so write the standard gzip file 1209 unsigned char header[10]; /* gzip file header */ [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/ |
HttpOverSpdyTest.java | 211 new MockResponse().addHeader("Content-Encoding: gzip").setBody(gzip("ABCABCABC"))); 434 public Buffer gzip(String bytes) throws IOException { method in class:HttpOverSpdyTest
|
/external/webrtc/third_party/gtest-parallel/ |
gtest-parallel | 17 import gzip 200 with gzip.GzipFile(save_file, "rb") as f: 232 with gzip.GzipFile("", "wb", 9, f) as gzf:
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_tarfile.py | 17 import gzip 18 gzip.GzipFile 20 gzip = None variable 187 _open = gzip.GzipFile 241 _open = gzip.GzipFile 261 # For Gzip and Bz2 Tests: fail with a ReadError on an uncompressed file. 419 if gzip: [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_tarfile.py | 17 import gzip 18 gzip.GzipFile 20 gzip = None variable 187 _open = gzip.GzipFile 241 _open = gzip.GzipFile 261 # For Gzip and Bz2 Tests: fail with a ReadError on an uncompressed file. 419 if gzip: [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_tarfile.py | 17 import gzip 18 gzip.GzipFile 20 gzip = None variable 187 _open = gzip.GzipFile 241 _open = gzip.GzipFile 261 # For Gzip and Bz2 Tests: fail with a ReadError on an uncompressed file. 419 if gzip: [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_tarfile.py | 17 import gzip 18 gzip.GzipFile 20 gzip = None variable 187 _open = gzip.GzipFile 241 _open = gzip.GzipFile 261 # For Gzip and Bz2 Tests: fail with a ReadError on an uncompressed file. 419 if gzip: [all...] |
/toolchain/binutils/binutils-2.27/ |
src-release.sh | 26 GZIPPROG=gzip 187 # Compress the output with gzip 313 echo " -g: Compress with gzip"
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
HttpEngine.java | 116 * True if this client added an "Accept-Encoding: gzip" header field and is 452 * Returns a new response that does gzip decompression on {@code response}, if transparent gzip 461 * Modified" can include "Content-Encoding: gzip" without a response body and we will crash if we 465 if (!transparentGzip || !"gzip".equalsIgnoreCase(userResponse.header("Content-Encoding"))) { 531 result.header("Accept-Encoding", "gzip"); [all...] |
/external/python/cpython3/Lib/xmlrpc/ |
server.py | 433 # a re to match a gzip Accept-Encoding 517 q = self.accept_encodings().get("gzip", 0) 521 self.send_header("Content-Encoding", "gzip") 529 #support gzip encoding of request 533 if encoding == "gzip": 539 self.send_response(400, "error decoding gzip content") [all...] |
/external/tensorflow/tensorflow/python/data/kernel_tests/ |
reader_dataset_ops_test.py | 20 import gzip 66 elif compression_type == "GZIP": 67 with gzip.GzipFile(fn, "wb") as f: 146 self._testTextLineDataset(compression_type="GZIP") 720 with gzip.GzipFile(gzfn, "wb") as gzf: 728 self.compression_type: "GZIP"})
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
DropBoxTest.java | 383 // Use random fill (so it doesn't compress), subtract a little for gzip overhead 652 gzout.write("Gzip File Value".getBytes()); 737 assertEquals("Gzip File Value", e.getText(100)); 745 assertEquals("Gzip File Value", [all...] |
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/http2/hpack/ |
hpack_test.go | 289 pair("content-encoding", "gzip"), 294 pair("content-encoding", "gzip"), 358 pair("content-encoding", "gzip"), 363 pair("content-encoding", "gzip"), 444 {"9bd9 ab", "gzip"}, 477 {"gzip", "9bd9 ab"},
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/net/http2/hpack/ |
hpack_test.go | 289 pair("content-encoding", "gzip"), 294 pair("content-encoding", "gzip"), 358 pair("content-encoding", "gzip"), 363 pair("content-encoding", "gzip"), 444 {"9bd9 ab", "gzip"}, 477 {"gzip", "9bd9 ab"},
|