/external/chromium/net/data/proxy_script_fetcher_unittest/ |
gzipped_pac.mock-http-headers | 3 Content-Encoding: gzip
|
/external/chromium_org/net/data/proxy_script_fetcher_unittest/ |
gzipped_pac.mock-http-headers | 3 Content-Encoding: gzip
|
/external/chromium/net/base/ |
gzip_header.h | 5 // The GZipHeader class allows you to parse a gzip header, such as you 6 // might find at the beginning of a file compressed by gzip (ie, a .gz 7 // file), or at the beginning of an HTTP response that uses a gzip 8 // Content-Encoding. See RFC 1952 for the specification for the gzip 38 // bytes from a gzip header. If the bytes we've seen so far do not 39 // yet constitute a complete gzip header, return 41 // gzip header, return INVALID_HEADER. When we've seen a complete 42 // gzip header, return COMPLETE_HEADER and set the pointer pointed 43 // to by header_end to the first byte beyond the gzip header. 84 static const uint8 magic[]; // gzip magic heade [all...] |
gzip_filter.h | 5 // GZipFilter applies gzip and deflate content encoding/decoding to a data 6 // stream. As specified by HTTP 1.1, with gzip encoding the content is 7 // wrapped with a gzip header, and with deflate encoding the content is in 35 // either gzip or deflate decoding. The function returns true if success and 80 // Parses and verifies the GZip header. 105 // Skip the 8 byte GZip footer after z_stream_end 117 // Used to parse the gzip header in gzip stream. 121 // Tracks the progress of parsing gzip header. 129 // Tracks how many bytes of gzip footer have been received [all...] |
/external/chromium_org/net/base/ |
gzip_header.h | 5 // The GZipHeader class allows you to parse a gzip header, such as you 6 // might find at the beginning of a file compressed by gzip (ie, a .gz 7 // file), or at the beginning of an HTTP response that uses a gzip 8 // Content-Encoding. See RFC 1952 for the specification for the gzip 37 // bytes from a gzip header. If the bytes we've seen so far do not 38 // yet constitute a complete gzip header, return 40 // gzip header, return INVALID_HEADER. When we've seen a complete 41 // gzip header, return COMPLETE_HEADER and set the pointer pointed 42 // to by header_end to the first byte beyond the gzip header. 83 static const uint8 magic[]; // gzip magic heade [all...] |
gzip_filter.h | 5 // GZipFilter applies gzip and deflate content encoding/decoding to a data 6 // stream. As specified by HTTP 1.1, with gzip encoding the content is 7 // wrapped with a gzip header, and with deflate encoding the content is in 34 // either gzip or deflate decoding. The function returns true if success and 80 // Parses and verifies the GZip header. 105 // Skip the 8 byte GZip footer after z_stream_end 117 // Used to parse the gzip header in gzip stream. 121 // Tracks the progress of parsing gzip header. 129 // Tracks how many bytes of gzip footer have been received [all...] |
/external/zlib/src/examples/ |
README.examples | 14 uncompress a gzip file 17 - is approximately twice as fast as gzip -d 21 append to a gzip file 26 join gzip files without recalculating the crc or recompressing 32 efficiently and robustly maintain a message log file in gzip format 35 - illustrates use of a gzip header extra field 47 index a zlib or gzip stream and randomly access it
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_gzip.py | 2 """Test script for the gzip module. 10 gzip = test_support.import_module('gzip') variable 19 data2 = """/* zlibmodule.c -- gzip-compatible data compression */ 20 /* See http://www.gzip.org/zlib/ 36 with gzip.GzipFile(self.filename, 'wb') as f: 52 with gzip.GzipFile(self.filename, 'r') as f: 59 with gzip.GzipFile(self.filename, 'rU') as f: 69 f = gzip.GzipFile(self.filename, 'r') 78 f = gzip.GzipFile(self.filename, 'w' [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_gzip.py | 2 """Test script for the gzip module. 10 gzip = test_support.import_module('gzip') variable 19 data2 = """/* zlibmodule.c -- gzip-compatible data compression */ 20 /* See http://www.gzip.org/zlib/ 36 with gzip.GzipFile(self.filename, 'wb') as f: 52 with gzip.GzipFile(self.filename, 'r') as f: 59 with gzip.GzipFile(self.filename, 'rU') as f: 69 f = gzip.GzipFile(self.filename, 'r') 78 f = gzip.GzipFile(self.filename, 'w' [all...] |
/frameworks/base/include/androidfw/ |
ZipUtils.h | 18 // Miscellaneous zip/gzip utility functions. 45 * We could declare gzip to be a sub-class of zip that has exactly 47 * and gzip as distinct, so there's no value. 49 * The zlib library has some gzip utilities, but it has no interface 53 * Pass in a seeked file pointer for the gzip file. If this is a gzip
|
/external/chromium_org/third_party/zlib/ |
inflate.h | 11 /* define NO_GZIP when compiling if you want to disable gzip header and 13 the crc code when it is not needed. For shared libraries, gzip decoding 22 FLAGS, /* i: waiting for method and flags (gzip) */ 23 TIME, /* i: waiting for modification time (gzip) */ 24 OS, /* i: waiting for extra flags and operating system (gzip) */ 25 EXLEN, /* i: waiting for extra length (gzip) */ 26 EXTRA, /* i: waiting for extra bytes (gzip) */ 27 NAME, /* i: waiting for end of file name (gzip) */ 28 COMMENT, /* i: waiting for end of comment (gzip) */ 29 HCRC, /* i: waiting for header crc (gzip) */ [all...] |
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 */
|
/external/qemu/distrib/zlib-1.2.3/ |
inflate.h | 11 /* define NO_GZIP when compiling if you want to disable gzip header and 13 the crc code when it is not needed. For shared libraries, gzip decoding 22 FLAGS, /* i: waiting for method and flags (gzip) */ 23 TIME, /* i: waiting for modification time (gzip) */ 24 OS, /* i: waiting for extra flags and operating system (gzip) */ 25 EXLEN, /* i: waiting for extra length (gzip) */ 26 EXTRA, /* i: waiting for extra bytes (gzip) */ 27 NAME, /* i: waiting for end of file name (gzip) */ 28 COMMENT, /* i: waiting for end of comment (gzip) */ 29 HCRC, /* i: waiting for header crc (gzip) */ [all...] |
/external/zlib/src/ |
inflate.h | 11 /* define NO_GZIP when compiling if you want to disable gzip header and 13 the crc code when it is not needed. For shared libraries, gzip decoding 22 FLAGS, /* i: waiting for method and flags (gzip) */ 23 TIME, /* i: waiting for modification time (gzip) */ 24 OS, /* i: waiting for extra flags and operating system (gzip) */ 25 EXLEN, /* i: waiting for extra length (gzip) */ 26 EXTRA, /* i: waiting for extra bytes (gzip) */ 27 NAME, /* i: waiting for end of file name (gzip) */ 28 COMMENT, /* i: waiting for end of comment (gzip) */ 29 HCRC, /* i: waiting for header crc (gzip) */ [all...] |
/external/chromium_org/third_party/freetype/include/freetype/ |
ftgzip.h | 5 /* Gzip-compressed stream support. */ 37 /* gzip */ 40 /* GZIP Streams */ 43 /* Using gzip-compressed font files. */ 46 /* This section contains the declaration of Gzip-specific functions. */ 57 * Open a new stream to parse gzip-compressed font files. This is 81 * In certain builds of the library, gzip compression recognition is
|
ftchapters.h | 99 /* gzip */
|
/external/freetype/include/freetype/ |
ftgzip.h | 5 /* Gzip-compressed stream support. */ 37 /* gzip */ 40 /* GZIP Streams */ 43 /* Using gzip-compressed font files. */ 46 /* This section contains the declaration of Gzip-specific functions. */ 57 * Open a new stream to parse gzip-compressed font files. This is 81 * In certain builds of the library, gzip compression recognition is
|
/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) {
|
/libcore/luni/src/main/java/java/util/zip/ |
GZIPOutputStream.java | 25 * GZIP storage format. 29 * because GZIP is only for compression, and is not a container for multiple files. 30 * This code creates a GZIP stream, similar to the {@code gzip(1)} utility. 50 * Constructs a new {@code GZIPOutputStream} to write data in GZIP format to 58 * Constructs a new {@code GZIPOutputStream} to write data in GZIP format to 67 * Constructs a new {@code GZIPOutputStream} to write data in GZIP format to 76 * Constructs a new {@code GZIPOutputStream} to write data in GZIP format to 92 * Indicates to the stream that all data has been written out, and any GZIP 107 * to the underlying stream in GZIP format [all...] |
/external/chromium_org/chrome/browser/metrics/ |
compression_utils.h | 12 // Compresses the text in |input| using gzip storing the result in |output|.
|
gzipped_protobufs_field_trial.h | 10 // Create a field trial for selecting whether to gzip protobufs before uploading
|
compression_utils_unittest.cc | 17 // The data to be compressed by gzip. This is the hex representation of "hello 23 // This is the string representation of gzip compressed string above. It was 24 // obtained by running echo -n "hello world" | gzip -c | hexdump -e '8 1 ",
|
/external/e2fsprogs/tests/f_dup_de/ |
script | 4 gzip $TMPFILE
|
/bootable/recovery/applypatch/ |
imgdiff.h | 23 // The gzip header size is actually variable, but we currently don't 26 // gzip format. 29 // The gzip footer size really is fixed.
|
/external/smack/src/com/kenai/jbosh/ |
GZIPCodec.java | 26 * Codec methods for compressing and uncompressing using GZIP. 48 * @return string name of the codec (i.e., "gzip") 51 return "gzip"; 55 * Compress/encode the data provided using the GZIP format. 77 * Uncompress/decode the data provided using the GZIP format.
|