Searched refs:GZIP (Results 1 - 25 of 49) sorted by relevance

12

/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpMessageDecoder.java48 public static final String GZIP = "gzip"; field in class:HttpMessageDecoder
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/curl/src/
H A Dmkhelp.pl109 open(GZIP, ">dumpit") ||
111 binmode GZIP;
113 print GZIP $_;
116 close(GZIP);
120 open(GZIP, "<dumpit.gz") ||
122 binmode GZIP;
123 while(<GZIP>) {
127 close(GZIP);
/external/e2fsprogs/util/
H A Dgen-tarball.in11 GZIP=gzip
49 | $GZIP -9 -c > $SRCROOT.tar.gz
50 $GZIP -l $SRCROOT.tar.gz
/external/jetty/src/java/org/eclipse/jetty/http/
H A DHttpHeaderValues.java38 GZIP="gzip", field in class:HttpHeaderValues
66 GZIP_BUFFER=CACHE.add(GZIP,GZIP_ORDINAL),
/external/protobuf/src/google/protobuf/io/
H A Dgzip_stream.h63 // GZIP streams have some extra header data for file attributes.
64 GZIP = 1, enumerator in enum:google::protobuf::io::GzipInputStream::Format
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, enumerator in enum:google::protobuf::io::GzipOutputStream::Format
122 // Defaults to GZIP.
H A Dzero_copy_stream_unittest.cc352 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 forma
[all...]
H A Dgzip_stream.cc80 case GzipInputStream::GZIP: windowBitsFormat = 16; break;
188 : format(GZIP),
222 // default to GZIP format
/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 DMakefile11 # If you don't want/need gzip support then comment out the GZIP SUPPORT line
212 $(error "No compressor selected! Select one or more of GZIP, LZMA, XZ, LZO or \
/external/libxml2/
H A Dxzlib.c47 #define GZIP 2 /* decompress a gzip stream */ macro
200 case GZIP:
503 state->how = GZIP;
554 if (state->how == GZIP) {
602 if (state->how == GZIP) {
649 } else if (state->how == LZMA || state->how == GZIP) { /* decompress */
/external/jetty/src/java/org/eclipse/jetty/servlets/
H A DGzipFilter.java53 /** GZIP Filter
120 public final static String GZIP="gzip"; field in class:GzipFilter
328 if (encodings[i].toLowerCase(Locale.ENGLISH).contains(GZIP))
332 compression = GZIP;
424 else if (compressionType.equals(GZIP))
H A DIncludableGzipFilter.java91 else if (compressionType.equals(GZIP))
/external/opencv3/3rdparty/zlib/
H A Dgzguts.h158 #define GZIP 2 /* decompress a gzip stream */ macro
H A Dgzread.c81 be set to GZIP for decompression. If direct copying, then leftover input
139 state->how = GZIP;
224 otherwise 0. gz_fetch() will leave state->how as COPY or GZIP unless the
233 case LOOK: /* -> LOOK, COPY (only if never GZIP), or GZIP */
245 case GZIP: /* -> GZIP or LOOK (if end of gzip stream) */
361 else { /* state->how == GZIP */
H A Ddeflate.h23 # define GZIP macro
H A Ddeflate.c265 #ifdef GZIP
415 #ifdef GZIP
691 #ifdef GZIP
764 #ifdef GZIP
953 #ifdef GZIP
1092 #ifdef GZIP
/external/pdfium/third_party/zlib_v128/
H A Dgzguts.h174 #define GZIP 2 /* decompress a gzip stream */ macro
H A Dgzread.c81 be set to GZIP for decompression. If direct copying, then leftover input
139 state->how = GZIP;
224 otherwise 0. gz_fetch() will leave state->how as COPY or GZIP unless the
233 case LOOK: /* -> LOOK, COPY (only if never GZIP), or GZIP */
245 case GZIP: /* -> GZIP or LOOK (if end of gzip stream) */
361 else { /* state->how == GZIP */
H A Ddeflate.h23 # define GZIP macro
H A Ddeflate.c264 #ifdef GZIP
414 #ifdef GZIP
690 #ifdef GZIP
763 #ifdef GZIP
952 #ifdef GZIP
1091 #ifdef GZIP
/external/zlib/src/
H A Dgzguts.h158 #define GZIP 2 /* decompress a gzip stream */ macro
H A Dgzread.c81 be set to GZIP for decompression. If direct copying, then leftover input
139 state->how = GZIP;
224 otherwise 0. gz_fetch() will leave state->how as COPY or GZIP unless the
233 case LOOK: /* -> LOOK, COPY (only if never GZIP), or GZIP */
245 case GZIP: /* -> GZIP or LOOK (if end of gzip stream) */
361 else { /* state->how == GZIP */
H A Ddeflate.h23 # define GZIP macro
/external/curl/lib/
H A Dhttp_chunks.c214 case GZIP:
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DNettyHttpClient.java151 request.headers().set(HttpHeaders.Names.ACCEPT_ENCODING, HttpHeaders.Values.GZIP);

Completed in 601 milliseconds

12