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

/external/zlib/contrib/dotzlib/DotZLib/
H A DGZipStream.cs41 private IntPtr _gzFile; field in class:DotZLib.GZipStream
56 _gzFile = gzopen(fileName, String.Format("wb{0}", (int)level));
57 if (_gzFile == IntPtr.Zero)
69 _gzFile = gzopen(fileName, "rb");
70 if (_gzFile == IntPtr.Zero)
135 gzclose(_gzFile);
166 result = gzread(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count);
185 return gzgetc(_gzFile);
210 int result = gzwrite(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count);
231 int result = gzputc(_gzFile, (in
[all...]

Completed in 75 milliseconds