HomeSort by relevance Sort by last modified time
    Searched refs:DEFLATED (Results 1 - 25 of 37) sorted by null

1 2

  /libcore/luni/src/main/java/java/util/zip/
GZIPOutputStream.java 84 out.write(Deflater.DEFLATED);
ZipOutputStream.java 63 * Indicates deflated entries.
65 public static final int DEFLATED = 8;
78 private int defaultCompressionMethod = DEFLATED;
130 if (currentEntry.getMethod() == DEFLATED) {
168 if (currentEntry.getMethod() == DEFLATED) {
379 if (method != STORED && method != DEFLATED) {
ZipEntry.java 58 * Zip entry state: Deflated.
60 public static final int DEFLATED = 8;
124 * @return the compression method, either {@code DEFLATED}, {@code STORED}
234 * Sets the compression method for this entry to either {@code DEFLATED} or {@code STORED}.
235 * The default is {@code DEFLATED}, which will cause the size, compressed size, and CRC to be
241 * when value is not {@code DEFLATED} or {@code STORED}.
244 if (value != STORED && value != DEFLATED) {
Deflater.java 95 public static final int DEFLATED = 8;
ZipInputStream.java 153 if (currentEntry.compressionMethod == ZipEntry.DEFLATED) {
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_msgutil.py 203 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
213 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
239 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
272 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
337 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
364 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
497 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
505 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
527 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
544 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS
    [all...]
  /system/core/libzipfile/
zipfile.c 75 DEFLATED = 8
124 case DEFLATED:
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipEntryTest.java 150 java.util.zip.ZipEntry.DEFLATED, zentry.getMethod());
316 zentry.setMethod(ZipEntry.DEFLATED);
318 ZipEntry.DEFLATED, zentry.getMethod());
ZipOutputStreamTest.java 168 zos.setMethod(ZipOutputStream.DEFLATED);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
HttpZipLocator.java 213 if (method != ZipEntry.DEFLATED && method != ZipEntry.STORED){
227 entry.deflate = (method == ZipEntry.DEFLATED);
  /external/qemu/
loader.c 397 #define DEFLATED 8
413 if (src[2] != DEFLATED || (flags & RESERVED) != 0) {
  /external/grub/stage2/
gunzip.c 38 Inflate deflated (PKZIP's method 8 compressed) data. The compression
48 the end of each deflated block is a special end-of-block (EOB) literal/
235 #define DEFLATED 8
293 if (buf[2] != DEFLATED
709 * inflate (decompress) the codes in a deflated (compressed) block.
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
util.py 232 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -window_bits)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zlib.py 85 self.assertRaises(ValueError, zlib.compressobj, 1, zlib.DEFLATED, 0)
88 zlib.compressobj, 1, zlib.DEFLATED, zlib.MAX_WBITS + 1)
180 method = zlib.DEFLATED
387 # This is 'foo', deflated
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zlib.py 85 self.assertRaises(ValueError, zlib.compressobj, 1, zlib.DEFLATED, 0)
88 zlib.compressobj, 1, zlib.DEFLATED, zlib.MAX_WBITS + 1)
180 method = zlib.DEFLATED
387 # This is 'foo', deflated
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
util.py 233 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -window_bits)
  /bootable/recovery/minzip/
Zip.c 81 DEFLATED = 8,
689 case DEFLATED:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
gzip.py 124 zlib.DEFLATED,
zipfile.py 672 # Prepare deflated bytes for decompression.
    [all...]
tarfile.py 451 self.cmp = self.zlib.compressobj(9, self.zlib.DEFLATED,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
gzip.py 124 zlib.DEFLATED,
zipfile.py 672 # Prepare deflated bytes for decompression.
    [all...]
tarfile.py 451 self.cmp = self.zlib.compressobj(9, self.zlib.DEFLATED,
    [all...]
  /prebuilts/devtools/tools/lib/
commons-compress-1.0.jar 
  /prebuilts/tools/common/commons-compress/
commons-compress-1.0.jar 

Completed in 278 milliseconds

1 2