Searched defs:gzwrite (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/zlib/
H A Dgzwrite.c0 /* gzwrite.c -- zlib functions for writing gzip files
143 int ZEXPORT gzwrite(file, buf, len) function
258 if (gzwrite(file, buf, 1) != 1)
273 ret = gzwrite(file, str, len);
H A Dmozzconf.h75 #define gzwrite MOZ_Z_gzwrite macro
H A Dzconf.h83 # define gzwrite z_gzwrite macro
/external/zlib/src/
H A Dgzwrite.c0 /* gzwrite.c -- zlib functions for writing gzip files
165 int ZEXPORT gzwrite(file, buf, len) function
287 if (gzwrite(file, buf, 1) != 1)
302 ret = gzwrite(file, str, len);
H A Dzconf.h92 # define gzwrite z_gzwrite macro
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DGZipStream.cs27 private static extern int gzwrite(IntPtr gzFile, int data, int length); method in class:DotZLib.GZipStream
210 int result = gzwrite(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count);
/external/zlib/src/test/
H A Dminigzip.c234 int gzwrite OF((gzFile, const void *, unsigned));
236 int gzwrite(gz, buf, len) function
384 if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
416 len = gzwrite(out, (char *)buf, (unsigned)buf_len);
/external/qemu/distrib/zlib-1.2.3/
H A Dgzio.c557 gzwrite returns the number of bytes actually written (0 in case of error).
559 int ZEXPORT gzwrite (file, buf, len) function
633 return gzwrite(file, buf, (unsigned)len);
670 return gzwrite(file, buf, len);
684 return gzwrite(file, &cc, 1) == 1 ? (int)cc : -1;
697 return gzwrite(file, (char*)s, (unsigned)strlen(s));
760 Sets the starting position for the next gzread or gzwrite on the given
798 size = gzwrite(file, s->inbuf, size);
877 Returns the starting position for the next gzread or gzwrite on the
/external/zlib/
H A Dzconf.h92 # define gzwrite z_gzwrite macro

Completed in 183 milliseconds