/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
|
/system/extras/ext4_utils/ |
make_ext4fs_main.c | 67 int gzip = 0; local 119 gzip = 1; 170 if (wipe && gzip) { 171 fprintf(stderr, "Cannot specifiy both wipe and gzip\n"); 203 exitcode = make_ext4fs_internal(fd, directory, mountpoint, fs_config_func, gzip,
|
ext2simg.c | 52 fprintf(stderr, " -z gzip output\n"); 182 int gzip = 0; local 196 gzip = 1; 249 write_ext4_image(outfd, gzip, sparse, crc);
|
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/ |
DictionaryBackupAgent.java | 160 GZIPOutputStream gzip = new GZIPOutputStream(baos); local 173 gzip.write(sizeBytes); 174 gzip.write(line); 177 gzip.finish(); 193 GZIPInputStream gzip = new GZIPInputStream(new ByteArrayInputStream(dictCompressed)); local 197 while ((got = gzip.read(tempData)) > 0) { 200 gzip.close();
|
/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/ |
HttpOverSpdyTest.java | 145 server.enqueue(new MockResponse().addHeader("Content-Encoding: gzip") 146 .setBody(gzip("ABCABCABC".getBytes(Util.UTF_8)))); 268 public byte[] gzip(byte[] bytes) throws IOException { method in class:HttpOverSpdyTest
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
__init__.py | 5 A caching http interface that supports ETags and gzip 34 import gzip namespace 347 if encoding in ['gzip', 'deflate']: 348 if encoding == 'gzip': 349 content = gzip.GzipFile(fileobj=StringIO.StringIO(new_content)).read() [all...] |
/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/src/test/java/com/squareup/okhttp/internal/http/ |
URLConnectionTest.java | 2263 public byte[] gzip(byte[] bytes) throws IOException { method in class:URLConnectionTest [all...] |
/libcore/luni/src/test/java/libcore/java/net/ |
URLConnectionTest.java | 2271 public byte[] gzip(byte[] bytes) throws IOException { method in class:URLConnectionTest [all...] |
/prebuilts/devtools/tools/lib/ |
commons-compress-1.0.jar | |
/prebuilts/tools/common/commons-compress/ |
commons-compress-1.0.jar | |
/prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.0/ |
commons-compress-1.0.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.mortbay.jetty.util_6.1.23.v201004211559.jar | |
org.mortbay.jetty.server_6.1.23.v201004211559.jar | |