Searched refs:gzip (Results 1 - 25 of 65) sorted by relevance

123

/external/protobuf/src/google/protobuf/io/
H A Dgzip_stream_unittest.sh35 # Test compatibility between command line gzip/gunzip binaries and
41 (gzip < ${TESTFILE} | ./zcgunzip | cmp - ${TESTFILE})
/external/valgrind/nightly/conf/
H A Dcellbuzz-cross.sendmail10 gzip -9 <"$3" >"$3.gz"
H A Dcellbuzz-native.sendmail10 gzip -9 <"$3" >"$3.gz"
/external/chromium-trace/trace-viewer/third_party/Paste/tests/
H A Dtest_gzipper.py3 import gzip namespace
15 '/', extra_environ=dict(HTTP_ACCEPT_ENCODING='gzip'))
18 actual = gzip.GzipFile(fileobj=six.BytesIO(res.body)).read()
/external/protobuf/
H A Dpost_process_dist.sh49 make dist-gzip
/external/selinux/scripts/
H A Dmake-update24 git archive --format=tar --prefix=$PKG-$VERS/ $PKG-$VERS | gzip > ../$DEST/$ARCHIVE
H A Drelease16 git archive --format=tar --prefix=$i-$VERS/ $i-$VERS | gzip > ../$DEST/$ARCHIVE
/external/dnsmasq/contrib/slackware-dnsmasq/
H A Ddnsmasq.SlackBuild30 gzip -9 $PKG/usr/man/man8/dnsmasq.8
33 gzip -9 $$f/man8/dnsmasq.8 ;
36 gzip -9 $PKG/usr/man/*/man8/dnsmasq.8
/external/openssh/contrib/cygwin/
H A DMakefile69 gzip-man-pages:
71 gzip $(DESTDIR)$(mandir)/man1/*.1
72 gzip $(DESTDIR)$(mandir)/man5/*.5
73 gzip $(DESTDIR)$(mandir)/man8/*.8
76 cygwin-postinstall: move-config-files remove-empty-dir install-inetd-config install-doc install-scripts install-copy-id gzip-man-pages
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/src/patches/
H A D_bundle61 tar cvf - --exclude='*.zip' --exclude='*.tar.gz' ssvnc | gzip -9 > ssvnc-$vers.tar.gz
62 tar cvf - --exclude='*.zip' --exclude='*.tar.gz' --exclude='*.dll' --exclude='*.exe' --exclude ssvnc/Windows/util ssvnc | gzip -9 > ssvnc_no_windows-$vers.tar.gz
95 gzip -t $g || (tput bel; sleep 2)
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Dgzipper.py13 import gzip namespace
28 if 'gzip' not in environ.get('HTTP_ACCEPT_ENCODING', ''):
60 headers.append(('content-encoding', 'gzip'))
75 output = gzip.GzipFile(mode='wb', compresslevel=self.compress_level,
/external/chromium-trace/trace-viewer/tracing/build/
H A Dtrace2html.py7 import gzip namespace
70 with gzip.GzipFile(fileobj=compressed_trace, mode='w') as f:
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
H A DRequestBodyCompression.java76 .header("Content-Encoding", "gzip")
77 .method(originalRequest.method(), gzip(originalRequest.body()))
82 private RequestBody gzip(final RequestBody body) { method in class:RequestBodyCompression.GzipRequestInterceptor
/external/cmockery/cmockery_0_1_2/
H A DMakefile.am108 rpm: dist-gzip packages/rpm.sh packages/rpm/rpm.spec
111 deb: dist-gzip packages/deb.sh packages/deb/*
/external/libexif/doc/
H A DMakefile.am34 (cd $(DOXYGEN_OUTPUT_DIR) && $(AMTAR) chof - $(HTML_APIDOC_DIR) | GZIP=--best gzip -c) > $@
46 (cd $(DOXYGEN_OUTPUT_DIR) && $(AMTAR) chof - $(HTML_APIDOC_INTERNALS_DIR) | GZIP=--best gzip -c) > $@
/external/squashfs-tools/squashfs-tools/
H A DMakefile6 ############# Building gzip support ###########
9 # (COMP_DEFAULT) is gzip.
11 # If you don't want/need gzip support then comment out the GZIP SUPPORT line
15 # Obviously, you must select at least one of the available gzip, lzma, lzo
84 COMP_DEFAULT = gzip
131 COMPRESSORS += gzip
/external/bison/build-aux/
H A Dgendocs.sh266 gzip -f -9 $PACKAGE.dvi
281 gzip -f -9 -c $PACKAGE.txt >"$outdir/$PACKAGE.txt.gz"
311 gzip -f -9 -c $PACKAGE.html >"$outdir/$PACKAGE.html.gz"
336 gzip -f -9 -c $PACKAGE.html >"$outdir/$PACKAGE.html.gz"
360 gzip -f -9 -c $PACKAGE-db.xml >"$outdir/$PACKAGE-db.xml.gz"
/external/e2fsprogs/util/
H A Dgen-tarball.in11 GZIP=gzip
/external/freetype/
H A DAndroid.mk30 src/gzip/ftgzip.c \
/external/jetty/src/java/org/eclipse/jetty/servlets/
H A DIncludableGzipFilter.java35 import org.eclipse.jetty.http.gzip.CompressedResponseWrapper;
36 import org.eclipse.jetty.http.gzip.AbstractCompressedStream;
44 * This allows the gzip filter to function correct during includes and to make a decision to gzip or not
/external/valgrind/drd/scripts/
H A Ddownload-and-build-gcc52 | gzip -cd | bzip2 -9 >${TAR}; }
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DBenchmark.java68 /** True to use gzip content-encoding for the response body. */
70 boolean gzip; field in class:Benchmark
144 if (gzip) modifiers.add("gzip");
187 if (gzip) {
193 result.addHeader("Content-Encoding: gzip");
/external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
H A DOkApacheClientTest.java171 server.enqueue(new MockResponse().setBody(gzip(text))
172 .setHeader("Content-Encoding", "gzip"));
175 request.setHeader("Accept-encoding", "gzip"); // Not transparent gzip.
181 assertEquals("gzip", encodingHeaders[0].getValue());
183 assertEquals("gzip", entity.getContentEncoding().getValue());
190 server.enqueue(new MockResponse().setBody(gzip(text))
191 .setHeader("Content-Encoding", "gzip")
195 request1.setHeader("Accept-encoding", "gzip"); // Not transparent gzip
244 private static Buffer gzip(String body) throws IOException { method in class:OkApacheClientTest
[all...]
/external/e2fsprogs/doc/
H A DMakefile.in31 -$(Q) gzip -9 $(DESTDIR)$(infodir)/libext2fs.info*
/external/e2fsprogs/tests/
H A DMakefile.in71 gzip -9 ${TDIR}/image

Completed in 2437 milliseconds

123