| /src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
| 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);
|
| /src/common/dist/zlib/ |
| gzwrite.c | 0 /* gzwrite.c -- zlib functions for writing gzip files 239 int ZEXPORT gzwrite(gzFile file, voidpc buf, unsigned len) { function
|
| zconf.h | 106 # define gzwrite z_gzwrite macro
|
| /src/common/dist/zlib/test/ |
| minigzip.c | 212 static int gzwrite(gzFile gz, const void *buf, unsigned len) { function 326 len = gzwrite(out, (char *)buf, (unsigned)buf_len); 360 if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
|