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

  /external/zlib/
gzlib.c 237 gzFile gz; local
242 gz = gz_open(path, fd, mode);
244 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...]
  /external/zlib/test/
minigzip.c 45 # define GZ_SUFFIX "-gz"
49 # define GZ_SUFFIX "-gz"
127 # define GZ_SUFFIX ".gz"
142 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
197 gzFile gz; local
200 gz = malloc(sizeof(gzFile));
201 if (gz == NULL)
203 gz->write = strchr(mode, 'w') != NULL;
204 gz->strm.zalloc = myalloc;
205 gz->strm.zfree = myfree
    [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 371 milliseconds