Searched refs:filestream (Results 1 – 4 of 4) sorted by relevance
/reactos/sdk/lib/3rdparty/zlib/contrib/minizip/ |
H A D | zip.c | 168 voidpf filestream; /* io structore of the zipfile */ member 360 if (ZERROR64(*pzlib_filefunc_def,filestream)) in zip64local_getByte() 379 err = zip64local_getByte(pzlib_filefunc_def,filestream,&i); in zip64local_getShort() 432 err = zip64local_getByte(pzlib_filefunc_def,filestream,&i); in zip64local_getLong64() 492 uSizeFile = ZTELL64(*pzlib_filefunc_def,filestream); in zip64local_SearchCentralDir() 557 uSizeFile = ZTELL64(*pzlib_filefunc_def,filestream); in zip64local_SearchCentralDir64() 797 ZCLOSE64(pziinit->z_filefunc, pziinit->filestream); in LoadCentralDirectoryRecord() 866 ziinit.filestream = ZOPEN64(ziinit.z_filefunc, in zipOpen3() 872 if (ziinit.filestream == NULL) in zipOpen3() 890 ZCLOSE64(ziinit.z_filefunc,ziinit.filestream); in zipOpen3() [all …]
|
H A D | unzip.c | 211 voidpf filestream, 238 voidpf filestream, 265 voidpf filestream, 269 voidpf filestream, in unz64local_getLong() argument 300 voidpf filestream, 305 voidpf filestream, in unz64local_getLong64() argument 478 voidpf filestream)); 620 us.filestream = ZOPEN64(us.z_filefunc, in unzOpenInternal() 624 if (us.filestream==NULL) in unzOpenInternal() 823 ZCLOSE64(s->z_filefunc, s->filestream); in unzClose() [all …]
|
H A D | ioapi.h | 189 …ine ZREAD64(filefunc,filestream,buf,size) ((*((filefunc).zfile_func64.zread_file)) ((filefun… argument 190 …ine ZWRITE64(filefunc,filestream,buf,size) ((*((filefunc).zfile_func64.zwrite_file)) ((filefun… argument 193 …ine ZCLOSE64(filefunc,filestream) ((*((filefunc).zfile_func64.zclose_file)) ((filefun… argument 194 …ine ZERROR64(filefunc,filestream) ((*((filefunc).zfile_func64.zerror_file)) ((filefun… argument 197 long call_zseek64 OF((const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset… 198 ZPOS64_T call_ztell64 OF((const zlib_filefunc64_32_def* pfilefunc,voidpf filestream)); 203 #define ZTELL64(filefunc,filestream) (call_ztell64((&(filefunc)),(filestream))) argument 204 #define ZSEEK64(filefunc,filestream,pos,mode) (call_zseek64((&(filefunc)),(filestream),(pos),(mod… argument
|
H A D | ioapi.c | 41 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int … in call_zseek64() argument 44 …return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset… in call_zseek64() 51 …return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,orig… in call_zseek64() 55 ZPOS64_T call_ztell64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream) in call_ztell64() argument 58 … return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream); in call_ztell64() 61 … uLong tell_uLong = (uLong)(*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream); in call_ztell64()
|