/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/chromium_org/third_party/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; 585 // 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/protobuf/src/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 113 // GZIP streams have some extra header data for file attributes. 114 GZIP = 1, 121 // Defaults to GZIP. 170 // Writes out all data and closes the gzip stream.
|
gzip_stream.cc | 94 case GZIP: windowBitsFormat = 16; break; 172 : format(GZIP), 216 // default to GZIP format
|
zero_copy_stream_unittest.cc | 300 &output, GzipOutputStream::GZIP, gzip_buffer_size); 308 &input, GzipInputStream::GZIP, gzip_buffer_size); 363 GzipOutputStream gzout(&output, GzipOutputStream::GZIP); 427 // ZLIB format should differ from 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/chromium_org/third_party/zlib/ |
gzguts.h | 74 /* gzip modes, also provide a little integrity check on the passed structure */ 81 #define LOOK 0 /* look for a gzip header */ 83 #define GZIP 2 /* decompress a gzip stream */ 85 /* internal gzip file state data structure */ 88 int mode; /* see gzip modes above */ 100 z_off64_t start; /* where the gzip data started, for rewinding */ 103 int direct; /* true if last read direct, false if gzip */
|
gzread.c | 1 /* gzread.c -- zlib functions for reading gzip files 92 /* Look for gzip header, set up for inflate or copy. state->have must be zero. 95 if there is no gzip header and direct copying will be performed, or it will 96 be set to GZIP for decompression, and the gzip header will be skipped so 102 success or -1 on failure. Failures may include read errors or gzip header 149 /* look for the gzip magic header bytes 31 and 139 */ 156 /* we have a gzip header, woo hoo! */ 199 state->how = GZIP; 204 /* not a gzip file -- save first byte (31) and fall to raw i/o * [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 */ 231 * This is applicable only for zip (not gzip or zlib).
|
/external/chromium_org/chrome/installer/mac/ |
dirdiffer.sh | 25 # - a gzip-compressed copy of the new file from new_dir; in patch_dir, the 37 # bzip2, gzip, or xz/lzma2, or leave them uncompressed, according to which is 41 # compressor; bzip2 is generally more effective for these data sets than gzip, 84 # 13 gzip compression failed 152 readonly GZIP="gzip" 257 if ! "${GZIP}" -9cn < "${new_file}" > "${gz_file}"; then 258 err "couldn't compress ${new_file} to ${gz_file} with ${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).
|
/external/qemu/distrib/zlib-1.2.8/ |
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/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).
|
/external/chromium_org/third_party/opus/src/doc/ |
build_draft.sh | 70 GZIP=-9 tar --owner=root --group=root --format=v7 -czf opus_source.tar.gz "${destdir}"
|
/external/smack/src/org/jivesoftware/smack/util/ |
Base64.java | 35 /** Specify that data should be gzip-compressed. */
36 public final static int GZIP = 2;
430 * The object is not GZip-compressed before being encoded.
450 * GZIP: gzip-compresses object before encoding it.
455 * Example: <code>encodeObject( myObj, Base64.GZIP )</code> or
457 * Example: <code>encodeObject( myObj, Base64.GZIP | Base64.DONT_BREAK_LINES )</code>
462 * @see Base64#GZIP
475 int gzip = (options & GZIP);
local 604 int gzip = ( options & GZIP ); local [all...] |
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/ |
NettyHttpClient.java | 152 request.headers().set(HttpHeaders.Names.ACCEPT_ENCODING, HttpHeaders.Values.GZIP);
|