Home | History | Annotate | Download | only in minizip

Lines Matching refs:opaque

22         return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
25 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
32 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
39 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
46 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
49 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
68 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
75 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
76 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size));
77 static uLong ZCALLBACK fwrite_file_func OF((voidpf opaque, voidpf stream, const void* buf,uLong size));
78 static ZPOS64_T ZCALLBACK ftell64_file_func OF((voidpf opaque, voidpf stream));
79 static long ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
80 static int ZCALLBACK fclose_file_func OF((voidpf opaque, voidpf stream));
81 static int ZCALLBACK ferror_file_func OF((voidpf opaque, voidpf stream));
83 static voidpf ZCALLBACK fopen_file_func (voidpf opaque, const char* filename, int mode)
101 static voidpf ZCALLBACK fopen64_file_func (voidpf opaque, const void* filename, int mode)
120 static uLong ZCALLBACK fread_file_func (voidpf opaque, voidpf stream, void* buf, uLong size)
127 static uLong ZCALLBACK fwrite_file_func (voidpf opaque, voidpf stream, const void* buf, uLong size)
134 static long ZCALLBACK ftell_file_func (voidpf opaque, voidpf stream)
142 static ZPOS64_T ZCALLBACK ftell64_file_func (voidpf opaque, voidpf stream)
149 static long ZCALLBACK fseek_file_func (voidpf opaque, voidpf stream, uLong offset, int origin)
172 static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)
198 static int ZCALLBACK fclose_file_func (voidpf opaque, voidpf stream)
205 static int ZCALLBACK ferror_file_func (voidpf opaque, voidpf stream)
222 pzlib_filefunc_def->opaque = NULL;
234 pzlib_filefunc_def->opaque = NULL;