/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | zlib.h | 1224 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ typedef 1264 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode)); 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 file, voidp buf, unsigned len)); 1341 ZEXTERN int ZEXPORT gzwrite OF((gzFile file, 1349 ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...)); 1364 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s)); 1372 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len)); 1385 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c)); [all …]
|
D | minigzip.c | 176 } *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 …]
|
D | gzlib.c | 20 local gzFile gz_open OF((const void *, int, const char *)); 91 local gzFile gz_open(path, fd, mode) in gz_open() 264 return (gzFile)state; 268 gzFile ZEXPORT gzopen(path, mode) in gzopen() 276 gzFile ZEXPORT gzopen64(path, mode) in gzopen64() 284 gzFile ZEXPORT gzdopen(fd, mode) in gzdopen() 289 gzFile gz; 305 gzFile ZEXPORT gzopen_w(path, mode) in gzopen_w() 315 gzFile file; in gzbuffer() 340 gzFile file; in gzrewind() [all …]
|
D | gzguts.h | 132 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); 133 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int)); 134 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile)); 135 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
|
D | gzwrite.c | 166 gzFile file; in gzwrite() 246 gzFile file; in gzputc() 294 gzFile file; in gzputs() 310 int ZEXPORTVA gzvprintf(gzFile file, const char *format, va_list va) in gzvprintf() 372 int ZEXPORTVA gzprintf(gzFile file, const char *format, ...) in gzprintf() 388 gzFile file; in gzprintf() 466 gzFile file; in gzflush() 498 gzFile file; in gzsetparams() 540 gzFile file; in gzclose_w()
|
D | gzread.c | 289 gzFile file; in gzread() 388 gzFile file; in gzgetc() 417 gzFile file; in gzgetc_() 425 gzFile file; 484 gzFile file; in gzgets() 548 gzFile file; in gzdirect() 568 gzFile file; in gzclose_r()
|
D | gzclose.c | 12 gzFile file; in gzclose()
|
D | zconf.h | 134 # define gzFile z_gzFile macro
|
D | example.c | 124 gzFile file;
|
D | ChangeLog | 1439 - added gzdopen to reopen a file descriptor as gzFile
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
D | zlib.h | 1300 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 …]
|
D | zconf.h | 147 # define gzFile z_gzFile macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | zlib.h | 1066 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)); 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 file, const char *s)); 1142 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len)); 1151 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c)); [all …]
|
D | minigzip.c | 75 void gz_compress OF((FILE *in, gzFile out)); 77 int gz_compress_mmap OF((FILE *in, gzFile out)); 79 void gz_uncompress OF((gzFile in, FILE *out)); 100 gzFile out; 133 gzFile out; 167 gzFile in; in gz_uncompress() 199 gzFile out; 229 gzFile in; 274 gzFile file;
|
D | gzio.c | 76 local gzFile gz_open OF((const char *path, const char *mode, int fd)); 77 local int do_flush OF((gzFile file, int flush)); 93 local gzFile gz_open (path, mode, fd) in gz_open() 129 return destroy(s), (gzFile)Z_NULL; 149 if (s->mode == '\0') return destroy(s), (gzFile)Z_NULL; 162 return destroy(s), (gzFile)Z_NULL; 175 return destroy(s), (gzFile)Z_NULL; 184 return destroy(s), (gzFile)Z_NULL; 202 return (gzFile)s; 208 gzFile ZEXPORT gzopen (path, mode) in gzopen() [all …]
|
D | example.c | 95 gzFile file;
|
D | ChangeLog | 822 - added gzdopen to reopen a file descriptor as gzFile
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/ |
D | gzguts.h | 138 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); 139 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int)); 140 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile)); 141 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
|