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

  /external/zlib/
gzlib.c 217 gzFile gz; local
222 gz = gz_open(path, fd, mode);
224 return gz;
  /external/zlib/examples/
gzappend.c 264 file gz; local
267 gz.name = name;
268 gz.fd = open(name, O_RDWR, 0);
269 if (gz.fd == -1) bye("cannot open ", name);
270 gz.buf = malloc(CHUNK);
271 if (gz.buf == NULL) bye("out of memory", "");
272 gz.size = LGCHUNK;
273 gz.left = 0;
276 gzheader(&gz);
289 lastoff = lseek(gz.fd, 0L, SEEK_CUR) - gz.left
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 114 File f1 = new File(dir, "f1.txt.gz");
116 File f3 = new File(dir, "f2.dat.gz");
191 File f2 = new File(dir, "DropBoxTest@" + (before + 100001) + ".txt.gz");
606 File gz = new File(dir, "file.gz"); local
607 GZIPOutputStream gzout = new GZIPOutputStream(new FileOutputStream(gz));
611 new DropBoxManager.Entry("gzipfile", 9000000, gz,
614 new DropBoxManager.Entry("gzipbinfile", 10000000, gz,

Completed in 3404 milliseconds