/external/chromium_org/third_party/zlib/ |
gzlib.c | 219 gzFile gz; local 224 gz = gz_open(path, fd, mode); 226 return gz;
|
/external/zlib/src/ |
gzlib.c | 289 gzFile gz; local 298 gz = gz_open(path, fd, mode); 300 return gz;
|
/external/chromium_org/chrome/installer/mac/third_party/bsdiff/ |
goobspatch.c | 242 gzFile gz; /* method = 3 */ member in union:__anon9460::__anon9461 285 if ((cf->u.gz = gzdopen(fd, "rb")) == NULL) 311 if ((gz_err = gzclose(cf->u.gz)) != Z_OK) 345 if ((nread = gzread(cf->u.gz, buf, len)) != len) { 347 gzerror(cf->u.gz, &gz_err);
|
goobsdiff.c | 248 u_char *bz2, *gz, *lzma; local 279 gz = malloc(gz_len); 280 gz_err = compress2gzip(gz, &gz_len, source, source_len, 9); 284 *buf = gz; 287 free(gz); 288 gz = NULL; 291 free(gz); 292 gz = NULL;
|
/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 | 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,
|