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

1 2 3 4

  /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/curl/src/
mkhelp.pl 107 my @test = `gzip --version 2>&1`;
108 if($test[0] =~ /gzip/) {
109 open(GZIP, ">dumpit") ||
111 binmode GZIP;
113 print GZIP $_;
114 $gzip += length($_);
116 close(GZIP);
118 system("gzip --best --no-name dumpit");
120 open(GZIP, "<dumpit.gz") ||
122 binmode GZIP;
    [all...]
  /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
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/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.
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/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.
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
gzip_stream.h 59 // zlib will autodetect gzip header or deflate stream
62 // GZIP streams have some extra header data for file attributes.
63 GZIP = 1,
69 // 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.
  /prebuilts/tools/linux-x86_64/protoc/include/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.
  /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 45 #define LOOK 0 /* look for a gzip/lzma header */
47 #define GZIP 2 /* decompress a gzip stream */
127 state->how = LOOK; /* look for gzip header */
200 case GZIP:
453 /* look for the gzip magic header bytes 31 and 139 */
460 /* we have a gzip header, woo hoo! */
503 state->how = GZIP;
507 /* not a gzip file -- save first byte (31) and fall to raw i/o */
554 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/opencv3/3rdparty/zlib/
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).
  /external/pdfium/third_party/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...]
  /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...]
  /external/curl/lib/
http_chunks.c 214 case GZIP:
225 "libcurl understands `identity', `deflate' and `gzip' "
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
NettyHttpClient.java 151 request.headers().set(HttpHeaders.Names.ACCEPT_ENCODING, HttpHeaders.Values.GZIP);

Completed in 2052 milliseconds

1 2 3 4