Searched defs:gzFile (Results 1 - 13 of 13) sorted by relevance

/external/zlib/src/contrib/dotzlib/DotZLib/
H A DGZipStream.cs24 private static extern int gzclose(IntPtr gzFile); argument
27 private static extern int gzwrite(IntPtr gzFile, int data, int length); argument
30 private static extern int gzread(IntPtr gzFile, int data, int length); argument
33 private static extern int gzgetc(IntPtr gzFile); argument
36 private static extern int gzputc(IntPtr gzFile, int c); argument
/external/zlib/src/test/
H A Dminigzip.c176 } *gzFile; typedef in typeref:struct:gzFile_s
178 gzFile gzopen OF((const char *, const char *));
179 gzFile gzdopen OF((int, const char *));
180 gzFile gz_open OF((const char *, int, const char *));
182 gzFile gzopen(path, mode)
189 gzFile gzdopen(fd, mode)
196 gzFile gz_open(path, fd, mode)
201 gzFile gz;
234 int gzwrite OF((gzFile, const void *, unsigned));
237 gzFile g
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dzlib.h1066 typedef voidp gzFile; typedef
1068 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1085 long long gzgetMtime(gzFile file);
1088 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1090 gzdopen() associates a gzFile with the file descriptor fd. File
1094 The next call of gzclose on the returned gzFile will also close the
1101 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1109 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1117 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1125 ZEXTERN int ZEXPORTVA gzprintf OF((gzFile fil
[all...]
/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dzlib.h1066 typedef voidp gzFile; typedef
1068 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1085 long long gzgetMtime(gzFile file);
1088 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1090 gzdopen() associates a gzFile with the file descriptor fd. File
1094 The next call of gzclose on the returned gzFile will also close the
1101 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1109 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1117 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1125 ZEXTERN int ZEXPORTVA gzprintf OF((gzFile fil
[all...]
/external/open-vcdiff/src/zlib/
H A Dzlib.h1066 typedef voidp gzFile; typedef
1068 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1085 long long gzgetMtime(gzFile file);
1088 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1090 gzdopen() associates a gzFile with the file descriptor fd. File
1094 The next call of gzclose on the returned gzFile will also close the
1101 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1109 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1117 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1125 ZEXTERN int ZEXPORTVA gzprintf OF((gzFile fil
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dzlib.h1066 typedef voidp gzFile; typedef
1068 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1085 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1087 gzdopen() associates a gzFile with the file descriptor fd. File
1091 The next call of gzclose on the returned gzFile will also close the
1098 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1106 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1114 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1122 ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...));
1135 ZEXTERN int ZEXPORT gzputs OF((gzFile fil
[all...]
/external/chromium_org/third_party/zlib/
H A Dmozzconf.h148 #define gzFile MOZ_Z_gzFile macro
H A Dzlib.h1170 typedef voidp gzFile; /* opaque gzip file descriptor */ typedef
1173 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1189 insufficient memory to allocate the gzFile state, or if an invalid mode was
1195 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1197 gzdopen associates a gzFile with the file descriptor fd. File descriptors
1201 The next call of gzclose on the returned gzFile will also close the file
1208 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1214 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1231 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1240 ZEXTERN int ZEXPORT gzread OF((gzFile fil
[all...]
H A Dzconf.h117 # define gzFile z_gzFile macro
/external/zlib/src/
H A Dzlib.h1224 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ typedef in typeref:struct:gzFile_s
1227 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1258 insufficient memory to allocate the gzFile state, or if an invalid mode was
1264 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1266 gzdopen associates a gzFile with the file descriptor fd. File descriptors
1270 The next call of gzclose on the returned gzFile will also close the file
1281 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1287 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1304 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1313 ZEXTERN int ZEXPORT gzread OF((gzFile fil
[all...]
H A Dzconf.h134 # define gzFile z_gzFile macro
/external/zlib/
H A Dzlib.h1224 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ typedef in typeref:struct:gzFile_s
1227 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1258 insufficient memory to allocate the gzFile state, or if an invalid mode was
1264 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1266 gzdopen associates a gzFile with the file descriptor fd. File descriptors
1270 The next call of gzclose on the returned gzFile will also close the file
1281 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1287 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1304 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1313 ZEXTERN int ZEXPORT gzread OF((gzFile fil
[all...]
H A Dzconf.h134 # define gzFile z_gzFile macro

Completed in 161 milliseconds