Home | History | Annotate | Download | only in minizip

Lines Matching full:voidpf

19 voidpf call_zopen64 (const zlib_filefunc64_32_def* pfilefunc,const void*filename,int mode)
29 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin)
43 ZPOS64_T call_ztell64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream)
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)