/external/chromium/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/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
|
gzjoin.c | 1 /* gzjoin -- command to join gzip files into one gzip file 33 gzjoin takes one or more gzip files on the command line and writes out a 34 single gzip file that will uncompress to the concatenation of the 35 uncompressed data from the individual gzip files. gzjoin does this without 41 gzjoin does not do an integrity check on the input gzip files other than 42 checking the gzip header and decompressing the compressed data. They are 45 Each joint between gzip files removes at least 18 bytes of previous trailer 47 compressed data in order to connect the streams. The output gzip file 48 has a minimal ten-byte gzip header with no file name or modification time [all...] |
/frameworks/native/include/utils/ |
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/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...] |
gzguts.h | 133 /* gzip modes, also provide a little integrity check on the passed structure */ 140 #define LOOK 0 /* look for a gzip header */ 142 #define GZIP 2 /* decompress a gzip stream */ 144 /* internal gzip file state data structure */ 152 int mode; /* see gzip modes above */ 159 int direct; /* 0 if processing gzip, 1 if transparent */ 162 z_off64_t start; /* where the gzip data started, for rewinding */
|
/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
|
ftchapters.h | 99 /* gzip */
|
/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 * Construct a new {@code GZIPOutputStream} to write data in GZIP format to 63 * Construct a new {@code GZIPOutputStream} to write data in GZIP format to 85 * Indicates to the stream that all data has been written out, and any GZIP 100 * to the underlying stream in GZIP format.
|
GZIPInputStream.java | 28 * The {@code GZIPInputStream} class is used to read data stored in the GZIP 29 * format, reading and decompressing GZIP data from the underlying stream into 34 * because GZIP is only for compression, and is not a container for multiple files. 35 * This code decompresses the data from a GZIP stream, similar to the {@code gunzip(1)} utility. 57 * The magic header for the GZIP format. 72 * Construct a {@code GZIPInputStream} to read from GZIP data from the 85 * Construct a {@code GZIPInputStream} to read from GZIP data from the 152 * Reads and decompresses GZIP data from the underlying stream into the
|
/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/webkit/Source/WebKit/qt/tests/MIMESniffing/ |
TestData.h | 59 {":/application_atom+xml", "application/x-gzip", false, 0}, 60 {":/application_atom+xml", "application/x-gzip", true, 0}, 109 {":/application_ogg", "application/x-gzip", false, 0}, 110 {":/application_ogg", "application/x-gzip", true, 0}, 159 {":/application_pdf", "application/x-gzip", false, 0}, 160 {":/application_pdf", "application/x-gzip", true, 0}, 209 {":/application_postscript", "application/x-gzip", false, 0}, 210 {":/application_postscript", "application/x-gzip", true, 0}, 259 {":/application_rdf+xml", "application/x-gzip", false, 0}, 260 {":/application_rdf+xml", "application/x-gzip", true, 0} [all...] |
resources.qrc | 9 <file alias="application_x-gzip">resources/application_x-gzip</file>
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
GZIPOutputStreamTest.java | 32 byte[] data = gzip(("Hello World").getBytes("UTF-8")); 40 assertTrue(Arrays.equals(data, GZIPInputStreamTest.gunzip(gzip(data)))); 43 public static byte[] gzip(byte[] bytes) throws IOException { method in class:GZIPOutputStreamTest
|
/external/e2fsprogs/util/ |
gen-tarball.in | 11 GZIP=gzip 49 | $GZIP -9 -c > $SRCROOT.tar.gz 50 $GZIP -l $SRCROOT.tar.gz
|
/external/valgrind/main/nightly/conf/ |
cellbuzz-cross.sendmail | 10 gzip -9 <"$3" >"$3.gz"
|
cellbuzz-native.sendmail | 10 gzip -9 <"$3" >"$3.gz"
|
/external/zlib/src/contrib/minizip/ |
mztools.h | 4 License: Same as ZLIB (www.gzip.org)
|
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
GZIPOutputStreamTest.java | 59 "an IO error occured while trying to find the output file or creating GZIP constructor"); 79 "an IO error occured while trying to find the output file or creating GZIP constructor"); 101 assertEquals("GZIP instance can still be used after finish is called", 106 "an IO error occured while trying to find the output file or creating GZIP constructor"); 126 assertEquals("GZIP instance can still be used after close is called", 130 "an IO error occured while trying to find the output file or creating GZIP constructor"); 146 assertEquals("the checksum value was incorrect result of write from GZIP", 160 "an IO error occured while trying to find the output file or creating GZIP constructor");
|
/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.
|