Lines Matching refs:opaque

34         return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
37 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
58 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
61 uLong tell_uLong = (uLong)(*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
87 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size));
89 static uLong ZCALLBACK fwrite_file_func OF((voidpf opaque, voidpf stream, const void* buf,uLong size));
90 static ZPOS64_T ZCALLBACK ftell64_file_func OF((voidpf opaque, voidpf stream));
91 static long ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
92 static int ZCALLBACK fclose_file_func OF((voidpf opaque, voidpf stream));
93 static int ZCALLBACK ferror_file_func OF((voidpf opaque, voidpf stream));
95 static voidpf ZCALLBACK fopen_file_func (voidpf opaque, const char* filename, int mode)
99 (void)opaque;
114 static voidpf ZCALLBACK fopen64_file_func (voidpf opaque, const void* filename, int mode)
118 (void)opaque;
134 static uLong ZCALLBACK fread_file_func (voidpf opaque, voidpf stream, void* buf, uLong size)
137 (void)opaque;
142 static uLong ZCALLBACK fwrite_file_func (voidpf opaque, voidpf stream, const void* buf, uLong size)
145 (void)opaque;
150 static long ZCALLBACK ftell_file_func (voidpf opaque, voidpf stream)
153 (void)opaque;
159 static ZPOS64_T ZCALLBACK ftell64_file_func (voidpf opaque, voidpf stream)
162 (void)opaque;
167 static long ZCALLBACK fseek_file_func (voidpf opaque, voidpf stream, uLong offset, int origin)
171 (void)opaque;
191 static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)
195 (void)opaque;
218 static int ZCALLBACK fclose_file_func (voidpf opaque, voidpf stream)
221 (void)opaque;
226 static int ZCALLBACK ferror_file_func (voidpf opaque, voidpf stream)
229 (void)opaque;
244 pzlib_filefunc_def->opaque = NULL;
256 pzlib_filefunc_def->opaque = NULL;