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);
79 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
86 static voidpf ZCALLBACK fopen_file_func(voidpf opaque, const char* filename, int mode) {
89 (void)opaque;
104 static voidpf ZCALLBACK fopen64_file_func(voidpf opaque, const void* filename, int mode) {
107 (void)opaque;
123 static uLong ZCALLBACK fread_file_func(voidpf opaque, voidpf stream, void* buf, uLong size) {
125 (void)opaque;
130 static uLong ZCALLBACK fwrite_file_func(voidpf opaque, voidpf stream, const void* buf, uLong size) {
132 (void)opaque;
137 static long ZCALLBACK ftell_file_func(voidpf opaque, voidpf stream) {
139 (void)opaque;
145 static ZPOS64_T ZCALLBACK ftell64_file_func(voidpf opaque, voidpf stream) {
147 (void)opaque;
152 static long ZCALLBACK fseek_file_func(voidpf opaque, voidpf stream, uLong offset, int origin) {
155 (void)opaque;
175 static long ZCALLBACK fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) {
178 (void)opaque;
201 static int ZCALLBACK fclose_file_func(voidpf opaque, voidpf stream) {
203 (void)opaque;
208 static int ZCALLBACK ferror_file_func(voidpf opaque, voidpf stream) {
210 (void)opaque;
224 pzlib_filefunc_def->opaque = NULL;
236 pzlib_filefunc_def->opaque = NULL;