Searched defs:gzwrite (Results 1 - 4 of 4) sorted by relevance
/vbox/src/libs/zlib-1.2.6/ |
H A D | gzwrite.c | 0 /* gzwrite.c -- zlib functions for writing gzip files 165 int ZEXPORT gzwrite(file, buf, len) function 280 if (gzwrite(file, buf, 1) != 1) 295 ret = gzwrite(file, str, len);
|
H A D | zconf.h | 68 # define gzwrite vboxzlib_gzwrite macro 179 # define gzwrite z_gzwrite macro
|
/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/ |
H A D | GZipStream.cs | 27 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);
|
/vbox/src/libs/zlib-1.2.6/test/ |
H A D | minigzip.c | 230 int gzwrite OF((gzFile, const void *, unsigned)); 232 int gzwrite(gz, buf, len) function 380 if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err)); 412 len = gzwrite(out, (char *)buf, (unsigned)buf_len);
|
Completed in 45 milliseconds