Home
last modified time | relevance | path

Searched refs:gzFile (Results 1 – 25 of 90) sorted by relevance

1234

/external/rust/crates/libz-sys/src/zlib-ng/
Dzlib.h1269 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ typedef
1309 Z_EXTERN gzFile Z_EXPORT gzdopen(int fd, const char *mode);
1332 Z_EXTERN int Z_EXPORT gzbuffer(gzFile file, unsigned size);
1348 Z_EXTERN int Z_EXPORT gzsetparams(gzFile file, int level, int strategy);
1359 Z_EXTERN int Z_EXPORT gzread(gzFile file, void *buf, unsigned len);
1389 Z_EXTERN size_t Z_EXPORT gzfread (void *buf, size_t size, size_t nitems, gzFile file);
1412 Z_EXTERN int Z_EXPORT gzwrite(gzFile file, void const *buf, unsigned len);
1419 Z_EXTERN size_t Z_EXPORT gzfwrite(void const *buf, size_t size, size_t nitems, gzFile file);
1430 Z_EXTERN int Z_EXPORTVA gzprintf(gzFile file, const char *format, ...);
1445 Z_EXTERN int Z_EXPORT gzputs(gzFile file, const char *s);
[all …]
Dzlib-ng.h1286 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ typedef
1289 gzFile zng_gzopen(const char *path, const char *mode);
1327 gzFile zng_gzdopen(int fd, const char *mode);
1351 int32_t zng_gzbuffer(gzFile file, uint32_t size);
1368 int32_t zng_gzsetparams(gzFile file, int32_t level, int32_t strategy);
1380 int32_t zng_gzread(gzFile file, void *buf, uint32_t len);
1411 size_t zng_gzfread(void *buf, size_t size, size_t nitems, gzFile file);
1435 int32_t zng_gzwrite(gzFile file, void const *buf, uint32_t len);
1443 size_t zng_gzfwrite(void const *buf, size_t size, size_t nitems, gzFile file);
1455 int32_t zng_gzprintf(gzFile file, const char *format, ...);
[all …]
Dgzlib.c21 static gzFile gz_open(const void *, int, const char *);
40 static gzFile gz_open(const void *path, int fd, const char *mode) { in gz_open()
210 return (gzFile)state; in gz_open()
214 gzFile Z_EXPORT PREFIX(gzopen)(const char *path, const char *mode) { in PREFIX()
219 gzFile Z_EXPORT PREFIX4(gzopen)(const char *path, const char *mode) { in PREFIX4()
225 gzFile Z_EXPORT PREFIX(gzdopen)(int fd, const char *mode) { in PREFIX()
227 gzFile gz; in PREFIX()
239 gzFile Z_EXPORT PREFIX(gzopen_w)(const wchar_t *path, const char *mode) { in PREFIX()
245 int Z_EXPORT PREFIX(gzbuffer)(gzFile file, unsigned size) { in PREFIX()
269 int Z_EXPORT PREFIX(gzrewind)(gzFile file) { in PREFIX()
[all …]
/external/libwebsockets/win32port/zlib/
Dzlib.h1165 typedef voidp gzFile; /* opaque gzip file descriptor */ typedef
1190 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1209 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1226 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1235 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1251 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1259 ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...));
1274 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
1282 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
1295 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
[all …]
Dgzlib.c16 local gzFile gz_open OF((const char *, int, const char *));
87 local gzFile gz_open(path, fd, mode) in gz_open()
192 return (gzFile)state;
196 gzFile ZEXPORT gzopen(path, mode) in gzopen()
204 gzFile ZEXPORT gzopen64(path, mode) in gzopen64()
212 gzFile ZEXPORT gzdopen(fd, mode) in gzdopen()
217 gzFile gz;
229 gzFile file; in gzbuffer()
254 gzFile file; in gzrewind()
276 gzFile file; in gzseek64()
[all …]
/external/python/cpython2/Modules/zlib/
Dzlib.h1300 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ typedef
1340 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1363 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1379 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1390 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1421 gzFile file));
1446 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1455 z_size_t nitems, gzFile file));
1468 ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...));
1483 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
[all …]
Dminigzip.c176 } *gzFile; typedef
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) in gzopen()
189 gzFile gzdopen(fd, mode) in gzdopen()
196 gzFile gz_open(path, fd, mode) in gz_open()
201 gzFile gz;
234 int gzwrite OF((gzFile, const void *, unsigned));
237 gzFile gz; in gzwrite()
[all …]
Dgzlib.c20 local gzFile gz_open OF((const void *, int, const char *));
91 local gzFile gz_open(path, fd, mode) in gz_open()
266 return (gzFile)state;
270 gzFile ZEXPORT gzopen(path, mode) in gzopen()
278 gzFile ZEXPORT gzopen64(path, mode) in gzopen64()
286 gzFile ZEXPORT gzdopen(fd, mode) in gzdopen()
291 gzFile gz;
307 gzFile ZEXPORT gzopen_w(path, mode) in gzopen_w()
317 gzFile file; in gzbuffer()
344 gzFile file; in gzrewind()
[all …]
/external/rust/crates/libz-sys/src/zlib/
Dzlib.h1300 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ typedef
1340 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1363 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1379 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1390 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1421 gzFile file));
1446 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1455 z_size_t nitems, gzFile file));
1468 ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...));
1483 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
[all …]
Dgzlib.c20 local gzFile gz_open OF((const void *, int, const char *));
91 local gzFile gz_open(path, fd, mode) in gz_open()
266 return (gzFile)state;
270 gzFile ZEXPORT gzopen(path, mode) in gzopen()
278 gzFile ZEXPORT gzopen64(path, mode) in gzopen64()
286 gzFile ZEXPORT gzdopen(fd, mode) in gzdopen()
291 gzFile gz;
307 gzFile ZEXPORT gzopen_w(path, mode) in gzopen_w()
317 gzFile file; in gzbuffer()
344 gzFile file; in gzrewind()
[all …]
/external/angle/third_party/zlib/
Dzlib.h1300 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ typedef
1340 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1363 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1379 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1390 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1421 gzFile file));
1446 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1455 z_size_t nitems, gzFile file));
1468 ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...));
1483 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
[all …]
Dgzlib.c20 local gzFile gz_open OF((const void *, int, const char *));
91 local gzFile gz_open(path, fd, mode) in gz_open()
266 return (gzFile)state;
270 gzFile ZEXPORT gzopen(path, mode) in gzopen()
278 gzFile ZEXPORT gzopen64(path, mode) in gzopen64()
286 gzFile ZEXPORT gzdopen(fd, mode) in gzdopen()
291 gzFile gz;
307 gzFile ZEXPORT gzopen_w(path, mode) in gzopen_w()
317 gzFile file; in gzbuffer()
344 gzFile file; in gzrewind()
[all …]
/external/zlib/
Dzlib.h1349 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ typedef
1389 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1412 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1428 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1439 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1471 gzFile file));
1497 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1507 z_size_t nitems, gzFile file));
1521 ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...));
1536 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
[all …]
Dgzlib.c20 local gzFile gz_open OF((const void *, int, const char *));
91 local gzFile gz_open(path, fd, mode) in gz_open()
266 return (gzFile)state;
270 gzFile ZEXPORT gzopen(path, mode) in gzopen()
278 gzFile ZEXPORT gzopen64(path, mode) in gzopen64()
286 gzFile ZEXPORT gzdopen(fd, mode) in gzdopen()
291 gzFile gz;
307 gzFile ZEXPORT gzopen_w(path, mode) in gzopen_w()
317 gzFile file; in gzbuffer()
344 gzFile file; in gzrewind()
[all …]
/external/oss-fuzz/projects/zlib/
Dminigzip_fuzzer.c94 } *gzFile; typedef
96 gzFile gzopen(const char *, const char *);
97 gzFile gzdopen(int, const char *);
98 gzFile gz_open (const char *, int, const char *);
100 gzFile gzopen(const char *path, const char *mode) in gzopen()
105 gzFile gzdopen(int fd, const char *mode) in gzdopen()
110 gzFile gz_open(const char *path, int fd, const char *mode) in gz_open()
112 gzFile gz; in gz_open()
161 int gzwrite(gzFile, const void *, unsigned);
163 int gzwrite(gzFile gz, const void *buf, unsigned len) in gzwrite()
[all …]
/external/rust/crates/libz-sys/src/
Dlib.rs10 pub type gzFile = *mut gzFile_s; typedef
164 pub fn gzdirect(file: gzFile) -> c_int; in gzdirect()
165 pub fn gzdopen(fd: c_int, mode: *const c_char) -> gzFile; in gzdopen() argument
166 pub fn gzclearerr(file: gzFile); in gzclearerr() argument
167 pub fn gzclose(file: gzFile) -> c_int; in gzclose()
168 pub fn gzeof(file: gzFile) -> c_int; in gzeof()
169 pub fn gzerror(file: gzFile, errnum: *mut c_int) -> *const c_char; in gzerror() argument
170 pub fn gzflush(file: gzFile, flush: c_int) -> c_int; in gzflush() argument
171 pub fn gzgetc(file: gzFile) -> c_int; in gzgetc()
172 pub fn gzgets(file: gzFile, buf: *mut c_char, len: c_int) -> *mut c_char; in gzgets() argument
[all …]
/external/rust/crates/libz-sys/src/zlib/test/
Dminigzip.c176 } *gzFile; typedef
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) in gzopen()
189 gzFile gzdopen(fd, mode) in gzdopen()
196 gzFile gz_open(path, fd, mode) in gz_open()
201 gzFile gz;
234 int gzwrite OF((gzFile, const void *, unsigned));
237 gzFile gz; in gzwrite()
[all …]
/external/zstd/zlibWrapper/examples/
Dminigzip.c181 } *gzFile; typedef
183 gzFile gzopen OF((const char *, const char *));
184 gzFile gzdopen OF((int, const char *));
185 gzFile gz_open OF((const char *, int, const char *));
187 gzFile gzopen(path, mode) in gzopen()
194 gzFile gzdopen(fd, mode) in gzdopen()
201 gzFile gz_open(path, fd, mode) in gz_open()
206 gzFile gz;
239 int gzwrite OF((gzFile, const void *, unsigned));
242 gzFile gz; in gzwrite()
[all …]
/external/zlib/contrib/minigzip/
Dminigzip.c176 } *gzFile; typedef
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) in gzopen()
189 gzFile gzdopen(fd, mode) in gzdopen()
196 gzFile gz_open(path, fd, mode) in gz_open()
201 gzFile gz;
234 int gzwrite OF((gzFile, const void *, unsigned));
237 gzFile gz; in gzwrite()
[all …]
/external/rust/crates/libz-sys/src/zlib/contrib/ada/
Dzlib-thin.ads109 type gzFile is new Voidp; -- zlib.h:646
182 function gzopen (path : Chars_Ptr; mode : Chars_Ptr) return gzFile;
184 function gzdopen (fd : Int; mode : Chars_Ptr) return gzFile;
187 (file : gzFile;
193 (file : gzFile;
199 (file : in gzFile;
204 function gzprintf (file : in gzFile; format : in Chars_Ptr) return Int;
206 function gzputs (file : in gzFile; s : in Chars_Ptr) return Int;
209 (file : gzFile;
214 function gzputc (file : gzFile; char : Int) return Int;
[all …]
/external/zstd/zlibWrapper/
Dgzcompatibility.h14 ZEXTERN int ZEXPORT gzclose_r OF((gzFile file));
15 ZEXTERN int ZEXPORT gzclose_w OF((gzFile file));
16 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
17 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file));
43 ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path,
65 gzFile file));
67 z_size_t nitems, gzFile file));
Dgzlib.c23 local gzFile gz_open OF((const void *, int, const char *));
94 local gzFile gz_open(path, fd, mode) in gz_open()
273 gzFile ZEXPORT gzopen(path, mode) in gzopen()
281 gzFile ZEXPORT gzopen64(path, mode) in gzopen64()
289 gzFile ZEXPORT gzdopen(fd, mode) in gzdopen()
294 gzFile gz;
310 gzFile ZEXPORT gzopen_w(path, mode) in gzopen_w()
320 gzFile file; in gzbuffer()
347 gzFile file; in gzrewind()
370 gzFile file; in gzseek64()
[all …]
/external/rust/crates/libz-sys/src/zlib/os400/
Dzlib.inc82 D gzFile S * File pointer
144 D like(gzFile)
149 D like(gzFile)
154 D like(gzFile)
160 D like(gzFile)
165 D file value like(gzFile) File pointer
169 D file value like(gzFile) File pointer
174 D file value like(gzFile) File pointer
182 D file value like(gzFile) File pointer
185 D file value like(gzFile) File pointer
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/test/fuzz/
Dminigzip_fuzzer.c68 void gz_compress (FILE *in, gzFile out);
70 int gz_compress_mmap (FILE *in, gzFile out);
72 void gz_uncompress (gzFile in, FILE *out);
89 void gz_compress(FILE *in, gzFile out) { in gz_compress()
122 int gz_compress_mmap(FILE *in, gzFile out) { in gz_compress_mmap()
154 void gz_uncompress(gzFile in, FILE *out) { in gz_uncompress()
181 gzFile out; in file_compress()
213 gzFile in; in file_uncompress()
/external/rust/crates/libz-sys/src/zlib-ng/test/
Dminigzip.c71 void gz_compress (FILE *in, gzFile out);
73 int gz_compress_mmap (FILE *in, gzFile out);
75 void gz_uncompress (gzFile in, FILE *out);
92 void gz_compress(FILE *in, gzFile out) { in gz_compress()
123 int gz_compress_mmap(FILE *in, gzFile out) { in gz_compress_mmap()
155 void gz_uncompress(gzFile in, FILE *out) { in gz_uncompress()
183 gzFile out; in file_compress()
216 gzFile in; in file_uncompress()
271 gzFile file; in main()

1234