/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
gzip_stream_unittest.sh | 35 # Test compatibility between command line gzip/gunzip binaries and 41 (gzip < ${TESTFILE} | ./zcgunzip | cmp - ${TESTFILE})
|
/external/protobuf/src/google/protobuf/io/ |
gzip_stream_unittest.sh | 35 # Test compatibility between command line gzip/gunzip binaries and 41 (gzip < ${TESTFILE} | ./zcgunzip | cmp - ${TESTFILE})
|
/external/valgrind/main/nightly/conf/ |
cellbuzz-cross.sendmail | 10 gzip -9 <"$3" >"$3.gz"
|
cellbuzz-native.sendmail | 10 gzip -9 <"$3" >"$3.gz"
|
/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...] |
/libcore/luni/src/test/java/libcore/java/util/zip/ |
GZIPOutputStreamTest.java | 33 byte[] data = gzip(("Hello World").getBytes("UTF-8")); 41 assertTrue(Arrays.equals(data, GZIPInputStreamTest.gunzip(gzip(data)))); 44 public static byte[] gzip(byte[] bytes) throws IOException { method in class:GZIPOutputStreamTest
|
GZIPInputStreamTest.java | 42 assertTrue(Arrays.equals(data, gunzip(GZIPOutputStreamTest.gzip(data)))); 48 byte[] gzipped = GZIPOutputStreamTest.gzip(data);
|
/external/chromium_org/third_party/sqlite/src/ |
publish_osx.sh | 33 gzip $NAME
|
publish.sh | 33 gzip sqlite3-$VERS.bin 50 gzip tclsqlite-$VERS.so 56 gzip sqlite-$VERS.so
|
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/ |
DictionaryBackupAgent.java | 161 GZIPOutputStream gzip = null; local 163 gzip = new GZIPOutputStream(baos); 176 gzip.write(sizeBytes); 177 gzip.write(line); 180 gzip.finish(); 185 IoUtils.closeQuietly(gzip); 197 GZIPInputStream gzip = new GZIPInputStream(new ByteArrayInputStream(dictCompressed)); local 201 while ((got = gzip.read(tempData)) > 0) { 204 gzip.close();
|
/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);
|
/external/dnsmasq/contrib/slackware-dnsmasq/ |
dnsmasq.SlackBuild | 30 gzip -9 $PKG/usr/man/man8/dnsmasq.8 33 gzip -9 $$f/man8/dnsmasq.8 ; 36 gzip -9 $PKG/usr/man/*/man8/dnsmasq.8
|
/external/openssh/contrib/cygwin/ |
Makefile | 70 gzip-man-pages: 72 gzip $(DESTDIR)$(mandir)/man1/*.1 73 gzip $(DESTDIR)$(mandir)/man5/*.5 74 gzip $(DESTDIR)$(mandir)/man8/*.8 77 cygwin-postinstall: move-config-files remove-empty-dir install-inetd-config install-doc install-scripts install-copy-id gzip-man-pages
|
/build/target/product/ |
embedded.mk | 28 gzip \
|
/build/tools/ |
mktarball.sh | 47 gzip -c ${target_tar} > ${target_tarball}
|
/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/bison/build-aux/ |
gendocs.sh | 266 gzip -f -9 $PACKAGE.dvi 281 gzip -f -9 -c $PACKAGE.txt >"$outdir/$PACKAGE.txt.gz" 311 gzip -f -9 -c $PACKAGE.html >"$outdir/$PACKAGE.html.gz" 336 gzip -f -9 -c $PACKAGE.html >"$outdir/$PACKAGE.html.gz" 360 gzip -f -9 -c $PACKAGE-db.xml >"$outdir/$PACKAGE-db.xml.gz"
|
/external/e2fsprogs/tests/ |
Makefile.in | 58 gzip -9 ${TDIR}/image
|
/external/e2fsprogs/util/ |
gen-tarball.in | 11 GZIP=gzip 49 | $GZIP -9 -c > $SRCROOT.tar.gz 50 $GZIP -l $SRCROOT.tar.gz
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
xmlrpclib.py | 146 import gzip namespace 148 gzip = None #python can be built without zlib/gzip support variable [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
xmlrpclib.py | 146 import gzip namespace 148 gzip = None #python can be built without zlib/gzip support variable [all...] |
/external/chromium_org/tools/telemetry/telemetry/core/ |
memory_cache_http_server.py | 7 import gzip namespace 67 self.send_header('Content-Encoding', 'gzip') 165 gzf = gzip.GzipFile(fileobj=sio, compresslevel=9, mode='wb')
|
/external/dropbear/debian/ |
rules | 86 gzip -9 '$(DIR)'/usr/share/man/man8/*.8 89 gzip -9 '$(DIR)'/usr/share/man/man1/*.1
|