Lines Matching refs:_gzFile
41 private IntPtr _gzFile;
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, (int)value);