Searched refs:gzip (Results 26 - 50 of 65) sorted by relevance

123

/external/elfutils/src/libdwfl/
H A DMakefile.am74 libdwfl_a_SOURCES += gzip.c
H A DAndroid.mk68 gzip.c \
H A DMakefile85 am__append_1 = gzip.c
129 linux-core-attach.c dwfl_frame_regs.c gzip.c bzip2.c lzma.c
130 am__objects_1 = gzip.$(OBJEXT)
533 include ./$(DEPDIR)/gzip.Po
/external/jetty/src/java/org/eclipse/jetty/server/handler/
H A DGzipHandler.java40 import org.eclipse.jetty.http.gzip.CompressedResponseWrapper;
41 import org.eclipse.jetty.http.gzip.AbstractCompressedStream;
48 * GZIP Handler This handler will gzip the content of a response if:
54 * content-type is not "application/gzip"</li>
60 * then use of efficient direct NIO may be prevented, thus use of the gzip mechanism of the <code>org.eclipse.jetty.servlet.DefaultServlet</code> is advised instead.
75 * Instantiates a new gzip handler.
246 if (ae != null && ae.indexOf("gzip")>=0 && !response.containsHeader("Content-Encoding")
311 * @return the gzip response wrapper
326 return new AbstractCompressedStream("gzip",request,this,_vary)
/external/libutf/
H A DMakefile86 tar cf - $(NAME)-$(VERSION) | gzip >$(NAME)-$(VERSION).tgz
116 (cd $(PORTDIR); tar cf - *) | gzip >$(NAME)-$(VERSION)-ports.tgz
/external/valgrind/drd/scripts/
H A Drun-splash2192 gzip -cd <$f >${f%.Z}
224 gzip -cd <$f >${f%.Z}
H A Ddownload-and-build-splash2.in35 gzip -cd < "$downloads/splash2-modified.patch.gz" | patch -p1 -s
/external/zlib/
H A DAndroid.mk83 LOCAL_MODULE:= gzip
/external/google-tv-pairing-protocol/cpp/
H A DMakefile.am163 rpm: dist-gzip packages/rpm.sh packages/rpm/rpm.spec
166 deb: dist-gzip packages/deb.sh packages/deb/*
/external/libvncserver/
H A DMakefile671 dist-gzip: distdir
672 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
696 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
705 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
714 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
726 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
909 dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \
/external/elfutils/src/
H A DMakefile631 dist-gzip: distdir
632 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
657 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
675 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
685 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
867 dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
/external/jetty/src/java/org/eclipse/jetty/servlets/
H A DGzipFilter.java46 import org.eclipse.jetty.http.gzip.CompressedResponseWrapper;
47 import org.eclipse.jetty.http.gzip.AbstractCompressedStream;
54 * This filter will gzip or deflate the content of a response if: <ul>
56 * <li>accept-encoding header is set to either gzip, deflate or a combination of those</li>
60 * if no mimeTypes are defined the content-type is not "application/gzip"</li>
65 * If both gzip and deflate are specified in the accept-encoding header, then gzip will be used.
70 * prevented, thus use of the gzip mechanism of the {@link org.eclipse.jetty.servlet.DefaultServlet} is
75 * is set to a comma separated list of user agents, then these agents will be excluded from gzip content.
120 public final static String GZIP="gzip";
[all...]
/external/jetty/src/java/org/eclipse/jetty/http/gzip/
H A DAbstractCompressedStream.java19 package org.eclipse.jetty.http.gzip;
346 * @see org.eclipse.jetty.http.gzip.CompressedStream#getOutputStream()
354 * @see org.eclipse.jetty.http.gzip.CompressedStream#isClosed()
H A DCompressedResponseWrapper.java19 package org.eclipse.jetty.http.gzip;
95 * @see org.eclipse.jetty.http.gzip.CompressedResponseWrapper#setMimeTypes(java.util.Set)
104 * @see org.eclipse.jetty.http.gzip.CompressedResponseWrapper#setBufferSize(int)
116 * @see org.eclipse.jetty.http.gzip.CompressedResponseWrapper#setMinCompressSize(int)
125 * @see org.eclipse.jetty.http.gzip.CompressedResponseWrapper#setContentType(java.lang.String)
142 (_mimeTypes==null && ct!=null && ct.contains("gzip") ||
152 * @see org.eclipse.jetty.http.gzip.CompressedResponseWrapper#setStatus(int, java.lang.String)
164 * @see org.eclipse.jetty.http.gzip.CompressedResponseWrapper#setStatus(int)
176 * @see org.eclipse.jetty.http.gzip.CompressedResponseWrapper#setContentLength(int)
209 * @see org.eclipse.jetty.http.gzip
[all...]
/external/jetty/src/java/org/eclipse/jetty/servlet/
H A DDefaultServlet.java99 * gzip If set to true, then static content will be served as
100 * gzip content encoded if a matching resource is
190 _gzip=getInitBoolean("gzip",_gzip);
444 // is gzip enabled?
446 boolean gzip=false;
449 // Look for a gzip resource
459 // Does a gzip resource exist?
465 // Does the client accept gzip?
467 if (accept!=null && accept.indexOf("gzip")>=0)
468 gzip
[all...]
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas53 xflags: Integer; (* extra flags (not used when writing a gzip file) *)
63 done: Integer; (* true when done reading gzip header *)
/external/llvm/utils/buildit/
H A Dbuild_llvm284 gzip -f $MDIR/*
/external/llvm/utils/release/
H A Dtest-release.sh63 echo " -use-gzip Use gzip instead of xz."
131 -use-gzip | --use-gzip )
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DInterceptorTest.java180 .setBody(gzip("abcabcabc"))
181 .addHeader("Content-Encoding: gzip"));
194 assertEquals("gzip", networkResponse.header("Content-Encoding"));
572 private Buffer gzip(String data) throws IOException { method in class:InterceptorTest
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DHttpOverSpdyTest.java217 new MockResponse().addHeader("Content-Encoding: gzip").setBody(gzip("ABCABCABC")));
440 public Buffer gzip(String bytes) throws IOException { method in class:HttpOverSpdyTest
/external/bzip2/
H A DMakefile201 gzip -v $(DISTNAME).tar
/external/mesa3d/src/gallium/tools/trace/
H A Dparse.py370 from gzip import GzipFile
/external/e2fsprogs/resize/
H A DMakefile.in142 gzip -9 > e2fsprogs-ALL-@E2FSPROGS_VERSION@.tar.gz)
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHttp2Test.java405 Buffer zipped = gzip(expectedData);
722 private static Buffer gzip(byte[] data) throws IOException { method in class:Http2Test
/external/selinux/policycoreutils/sepolicy/sepolicy/
H A D__init__.py785 import gzip namespace
788 fd = gzip.open(path)

Completed in 697 milliseconds

123