Searched refs:pfilefunc (Results 1 – 2 of 2) sorted by relevance
| /netbsd/src/common/dist/zlib/contrib/minizip/ |
| D | ioapi.c | 31 voidpf call_zopen64 (const zlib_filefunc64_32_def* pfilefunc, const void*filename, int mode) { in call_zopen64() argument 32 if (pfilefunc->zfile_func64.zopen64_file != NULL) in call_zopen64() 33 … return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode); in call_zopen64() 36 … return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode); in call_zopen64() 40 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int … in call_zseek64() argument 41 if (pfilefunc->zfile_func64.zseek64_file != NULL) in call_zseek64() 42 …return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset… in call_zseek64() 49 …return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,orig… in call_zseek64() 53 ZPOS64_T call_ztell64 (const zlib_filefunc64_32_def* pfilefunc, voidpf filestream) { in call_ztell64() argument 54 if (pfilefunc->zfile_func64.zseek64_file != NULL) in call_ztell64() [all …]
|
| D | ioapi.h | 196 voidpf call_zopen64(const zlib_filefunc64_32_def* pfilefunc,const void*filename,int mode); 197 long call_zseek64(const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int o… 198 ZPOS64_T call_ztell64(const zlib_filefunc64_32_def* pfilefunc,voidpf filestream);
|