Lines Matching defs:stream
20 #define FTELLO_FUNC(stream) ftello(stream) argument
21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin) argument
24 #define FTELLO_FUNC(stream) ftello64(stream) argument
25 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin) argument
123 static uLong ZCALLBACK fread_file_func(voidpf opaque, voidpf stream, void* buf, uLong size) { in fread_file_func()
130 static uLong ZCALLBACK fwrite_file_func(voidpf opaque, voidpf stream, const void* buf, uLong size) { in fwrite_file_func()
137 static long ZCALLBACK ftell_file_func(voidpf opaque, voidpf stream) { in ftell_file_func()
145 static ZPOS64_T ZCALLBACK ftell64_file_func(voidpf opaque, voidpf stream) { in ftell64_file_func()
152 static long ZCALLBACK fseek_file_func(voidpf opaque, voidpf stream, uLong offset, int origin) { in fseek_file_func()
175 static long ZCALLBACK fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) { in fseek64_file_func()
201 static int ZCALLBACK fclose_file_func(voidpf opaque, voidpf stream) { in fclose_file_func()
208 static int ZCALLBACK ferror_file_func(voidpf opaque, voidpf stream) { in ferror_file_func()