Searched
full:gzip (Results
526 -
550 of
1479) sorted by null
<<21222324252627282930>>
/toolchain/binutils/binutils-2.27/zlib/ |
gzwrite.c | 1 /* gzwrite.c -- zlib functions for writing gzip files 13 /* Initialize state for writing a gzip file. Mark initialization by setting 38 /* allocate deflate memory, set up for gzip compression */ 67 then the deflate() state is reset to start a new gzip stream. If gz->direct
|
minigzip.c | 1 /* minigzip.c -- simulate gzip using the zlib compression library 7 * minigzip is a minimal implementation of the gzip utility. This is 9 * full-featured gzip. No attempt is made to deal with file systems 11 * very limited. So use minigzip only for testing; use gzip for the
|
/tools/tradefederation/core/prod-tests/src/com/android/continuous/ |
SmokeTest.java | 44 "(text/xml/zip/gzip/png/unknown). May be repeated.", importance = Importance.IF_UNSET)
|
/external/libedit/ |
Makefile.in | 223 DIST_TARGETS = dist-gzip 607 dist-gzip: distdir 608 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz 634 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz 652 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ 662 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;; [all...] |
/external/libmicrohttpd/ |
Makefile.in | 238 DIST_TARGETS = dist-gzip 677 dist-gzip: distdir 678 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz 704 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz 722 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ 732 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;; [all...] |
/external/lmfit/ |
Makefile.in | 255 DIST_TARGETS = dist-gzip 636 dist-gzip: distdir 637 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz 663 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz 681 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ 691 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;; [all...] |
/development/ndk/platforms/android-14/include/ |
zconf.h | 144 * created by gzip. (Files created by minigzip can still be extracted by 145 * gzip.)
|
/development/vndk/tools/header-checker/utils/ |
utils.py | 6 import gzip 59 with gzip.open(reference_dump_path, 'wb') as f:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
test_archive_util.py | 103 @unittest.skipUnless(find_executable('tar') and find_executable('gzip'),
121 gzip_cmd = ['gzip', '-f9', 'archive2.tar']
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
zconf.h | 144 * created by gzip. (Files created by minigzip can still be extracted by
145 * gzip.)
|
zconf.in.h | 144 * created by gzip. (Files created by minigzip can still be extracted by
145 * gzip.)
|
/external/freetype/ |
modules.cfg | 125 # Support for streams compressed with gzip (files with suffix .gz). 129 AUX_MODULES += gzip
|
/external/freetype/src/gzip/ |
ftzconf.h | 120 * created by gzip. (Files created by minigzip can still be extracted by 121 * gzip.)
|
/external/kmod/libkmod/ |
libkmod-file.c | 206 ERR(file->ctx, "gzip: %s\n", gz_errmsg); 208 /* gzip might not set errno here */
|
/external/kmod/testsuite/ |
populate-modules.sh | 83 # gzip these modules 85 gzip $ROOTFS/$m
|
/external/libbrillo/brillo/http/ |
http_request_unittest.cc | 111 request.AddHeader(request_header::kAcceptEncoding, "compress, gzip"); 126 {request_header::kAcceptEncoding, "compress, gzip"},
|
/external/perf_data_converter/src/ |
builder.cc | 88 std::cerr << "Failed to serialize to gzip stream"; 98 std::cerr << "Failed to serialize to gzip stream";
|
/external/syslinux/com32/lib/zlib/ |
zconf.in.h | 134 * created by gzip. (Files created by minigzip can still be extracted by 135 * gzip.)
|
/external/syslinux/doc/ |
sdi.txt | 67 7) Gzip your image 68 If you want to speed the download time, you can gzip the image as it will
|
/external/syslinux/lzo/src/ |
lzo_dict.h | 155 /* hash function like in gzip/zlib (deflate) */ 159 /* incremental hash like in gzip/zlib (deflate) */
|
/external/toolchain-utils/automation/server/monitor/ |
dashboard.py | 8 import gzip 79 log = gzip.open(log_path, 'r')
|
/prebuilts/go/darwin-x86/src/encoding/json/ |
bench_test.go | 15 "compress/gzip" 46 gz, err := gzip.NewReader(f)
|
/prebuilts/go/darwin-x86/src/net/http/ |
response_test.go | 10 "compress/gzip" 512 "Content-Encoding: gzip\r\n" + 526 "Content-Encoding": {"gzip"}, 639 buf.WriteString("Content-Encoding: gzip\r\n") 640 wr = gzip.NewWriter(wr) 654 err := wr.(*gzip.Writer).Close() 676 gzReader, err := gzip.NewReader(resp.Body) 677 checkErr(err, "gzip.NewReader")
|
/prebuilts/go/linux-x86/src/encoding/json/ |
bench_test.go | 15 "compress/gzip" 46 gz, err := gzip.NewReader(f)
|
/prebuilts/go/linux-x86/src/net/http/ |
response_test.go | 10 "compress/gzip" 512 "Content-Encoding: gzip\r\n" + 526 "Content-Encoding": {"gzip"}, 639 buf.WriteString("Content-Encoding: gzip\r\n") 640 wr = gzip.NewWriter(wr) 654 err := wr.(*gzip.Writer).Close() 676 gzReader, err := gzip.NewReader(resp.Body) 677 checkErr(err, "gzip.NewReader")
|
Completed in 758 milliseconds
<<21222324252627282930>>