HomeSort by relevance Sort by last modified time
    Searched refs:GZIP (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessageDecoder.java 48 public static final String GZIP = "gzip";
50 public static final String ACCEPTED = GZIP + "," + DEFLATE;
56 } else if (GZIP.equalsIgnoreCase(encoding)
57 || ("x-" + GZIP).equalsIgnoreCase(encoding)) {
58 return GZIP;
73 if (encoding == GZIP) {
  /external/e2fsprogs/util/
gen-tarball.in 11 GZIP=gzip
49 | $GZIP -9 -c > $SRCROOT.tar.gz
50 $GZIP -l $SRCROOT.tar.gz
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpHeaderValues.java 38 GZIP="gzip",
66 GZIP_BUFFER=CACHE.add(GZIP,GZIP_ORDINAL),
  /external/protobuf/src/google/protobuf/io/
gzip_stream.h 60 // zlib will autodetect gzip header or deflate stream
63 // GZIP streams have some extra header data for file attributes.
64 GZIP = 1,
70 // buffer_size and format may be -1 for default of 64kB and GZIP format
114 // GZIP streams have some extra header data for file attributes.
115 GZIP = 1,
122 // Defaults to GZIP.
172 // Writes out all data and closes the gzip stream.
zero_copy_stream_unittest.cc 352 options.format = GzipOutputStream::GZIP;
364 &input, GzipInputStream::GZIP, gzip_buffer_size);
387 options.format = GzipOutputStream::GZIP;
400 &input, GzipInputStream::GZIP, gzip_buffer_size);
419 options.format = GzipOutputStream::GZIP;
432 &input, GzipInputStream::GZIP, gzip_buffer_size);
447 options.format = GzipOutputStream::GZIP;
459 &input, GzipInputStream::GZIP, gzip_buffer_size);
520 options.format = GzipOutputStream::GZIP;
586 // ZLIB format should differ from GZIP format
    [all...]
gzip_stream.cc 80 case GzipInputStream::GZIP: windowBitsFormat = 16; break;
188 : format(GZIP),
222 // default to GZIP format
  /external/libexif/doc/
Makefile.am 34 (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/
Makefile 6 ############# Building gzip support ###########
8 # Gzip support is by default enabled, and the compression type default
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
212 $(error "No compressor selected! Select one or more of GZIP, LZMA, XZ, LZO or \
  /external/libxml2/
xzlib.c 43 #define LOOK 0 /* look for a gzip/lzma header */
45 #define GZIP 2 /* decompress a gzip stream */
125 state->how = LOOK; /* look for gzip header */
198 case GZIP:
451 /* look for the gzip magic header bytes 31 and 139 */
458 /* we have a gzip header, woo hoo! */
501 state->how = GZIP;
505 /* not a gzip file -- save first byte (31) and fall to raw i/o */
552 if (state->how == GZIP) {
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/servlets/
GzipFilter.java 46 import org.eclipse.jetty.http.gzip.CompressedResponseWrapper;
47 import org.eclipse.jetty.http.gzip.AbstractCompressedStream;
53 /** GZIP Filter
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
    [all...]
IncludableGzipFilter.java 35 import org.eclipse.jetty.http.gzip.CompressedResponseWrapper;
36 import org.eclipse.jetty.http.gzip.AbstractCompressedStream;
40 /** Includable GZip Filter.
44 * This allows the gzip filter to function correct during includes and to make a decision to gzip or not
91 else if (compressionType.equals(GZIP))
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
gzguts.h 165 /* gzip modes, also provide a little integrity check on the passed structure */
172 #define LOOK 0 /* look for a gzip header */
174 #define GZIP 2 /* decompress a gzip stream */
176 /* internal gzip file state data structure */
184 int mode; /* see gzip modes above */
191 int direct; /* 0 if processing gzip, 1 if transparent */
194 z_off64_t start; /* where the gzip data started, for rewinding */
gzread.c 1 /* gzread.c -- zlib functions for reading gzip files
77 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
80 if there is no gzip header and direct copying will be performed, or it will
81 be set to GZIP for decompression. If direct copying, then leftover input
129 /* look for gzip magic bytes -- if there, do gzip decoding (note: there is
131 gzip file, to wit, if a single 31 byte is written, then we cannot tell
132 whether this is a single-byte file, or just a partially written gzip
133 file -- for here we assume that if a gzip file is being written, then
135 single byte is sufficient indication that it is not a gzip file) *
    [all...]
deflate.h 18 /* define NO_GZIP when compiling if you want to disable gzip header and
20 the crc code when it is not needed. For shared libraries, gzip encoding
23 # define GZIP
104 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */
105 gz_headerp gzhead; /* gzip header information to write */
229 * This is applicable only for zip (not gzip or zlib).
fx_zlib_deflate.c 264 #ifdef GZIP
266 wrap = 2; /* write gzip wrapper instead */
414 #ifdef GZIP
590 case 2: /* gzip wrapper */
592 if (s->gzhead != Z_NULL) { /* user-supplied gzip header */
690 #ifdef GZIP
763 #ifdef GZIP
    [all...]
  /external/zlib/src/
gzguts.h 149 /* gzip modes, also provide a little integrity check on the passed structure */
156 #define LOOK 0 /* look for a gzip header */
158 #define GZIP 2 /* decompress a gzip stream */
160 /* internal gzip file state data structure */
168 int mode; /* see gzip modes above */
175 int direct; /* 0 if processing gzip, 1 if transparent */
178 z_off64_t start; /* where the gzip data started, for rewinding */
gzread.c 1 /* gzread.c -- zlib functions for reading gzip files
77 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
80 if there is no gzip header and direct copying will be performed, or it will
81 be set to GZIP for decompression. If direct copying, then leftover input
129 /* look for gzip magic bytes -- if there, do gzip decoding (note: there is
131 gzip file, to wit, if a single 31 byte is written, then we cannot tell
132 whether this is a single-byte file, or just a partially written gzip
133 file -- for here we assume that if a gzip file is being written, then
135 single byte is sufficient indication that it is not a gzip file) *
    [all...]
deflate.h 18 /* define NO_GZIP when compiling if you want to disable gzip header and
20 the crc code when it is not needed. For shared libraries, gzip encoding
23 # define GZIP
104 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */
105 gz_headerp gzhead; /* gzip header information to write */
229 * This is applicable only for zip (not gzip or zlib).
deflate.c 265 #ifdef GZIP
267 wrap = 2; /* write gzip wrapper instead */
415 #ifdef GZIP
591 case 2: /* gzip wrapper */
593 if (s->gzhead != Z_NULL) { /* user-supplied gzip header */
691 #ifdef GZIP
764 #ifdef GZIP
    [all...]
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
NettyHttpClient.java 152 request.headers().set(HttpHeaders.Names.ACCEPT_ENCODING, HttpHeaders.Values.GZIP);
  /external/libvncserver/
Makefile 671 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 ;;
    [all...]
  /external/elfutils/src/
Makefile 631 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
    [all...]
  /external/guava/guava/src/com/google/common/net/
MediaType.java 271 public static final MediaType GZIP = createConstant(APPLICATION_TYPE, "x-gzip");
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/1.0/
plexus-archiver-1.0.jar 

Completed in 306 milliseconds

1 2 3