HomeSort by relevance Sort by last modified time
    Searched defs:gz (Results 1 - 8 of 8) sorted by null

  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/
ContentTypeDetectorTest.java 149 final OutputStream gz = new GZIPOutputStream(buffer); local
150 gz.write("Hello gz!".getBytes());
151 gz.close();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
gzlib.c 289 gzFile gz; local
298 gz = gz_open(path, fd, mode);
300 return gz;
minigzip.c 49 # define GZ_SUFFIX "-gz"
53 # define GZ_SUFFIX "-gz"
131 # define GZ_SUFFIX ".gz"
146 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
201 gzFile gz; local
204 gz = malloc(sizeof(struct gzFile_s));
205 if (gz == NULL)
207 gz->write = strchr(mode, 'w') != NULL;
208 gz->strm.zalloc = myalloc;
209 gz->strm.zfree = myfree;
    [all...]
  /external/pdfium/third_party/zlib_v128/
gzlib.c 289 gzFile gz; local
298 gz = gz_open(path, fd, mode);
300 return gz;
  /external/zlib/src/
gzlib.c 289 gzFile gz; local
298 gz = gz_open(path, fd, mode);
300 return gz;
  /external/zlib/src/examples/
gzappend.c 266 file gz; local
269 gz.name = name;
270 gz.fd = open(name, O_RDWR, 0);
271 if (gz.fd == -1) bye("cannot open ", name);
272 gz.buf = malloc(CHUNK);
273 if (gz.buf == NULL) bye("out of memory", "");
274 gz.size = LGCHUNK;
275 gz.left = 0;
278 gzheader(&gz);
291 lastoff = lseek(gz.fd, 0L, SEEK_CUR) - gz.left
    [all...]
  /external/zlib/src/test/
minigzip.c 49 # define GZ_SUFFIX "-gz"
53 # define GZ_SUFFIX "-gz"
131 # define GZ_SUFFIX ".gz"
146 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
201 gzFile gz; local
204 gz = malloc(sizeof(struct gzFile_s));
205 if (gz == NULL)
207 gz->write = strchr(mode, 'w') != NULL;
208 gz->strm.zalloc = myalloc;
209 gz->strm.zfree = myfree
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 118 File f1 = new File(dir, "f1.txt.gz");
120 File f3 = new File(dir, "f2.dat.gz");
195 File f2 = new File(dir, "DropBoxTest@" + (before + 100001) + ".txt.gz");
608 File gz = new File(dir, "file.gz"); local
609 GZIPOutputStream gzout = new GZIPOutputStream(new FileOutputStream(gz));
613 new DropBoxManager.Entry("gzipfile", 9000000, gz,
616 new DropBoxManager.Entry("gzipbinfile", 10000000, gz,
    [all...]

Completed in 543 milliseconds