Home
last modified time | relevance | path

Searched refs:gzread (Results 1 – 15 of 15) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dminigzip.c258 int gzread OF((gzFile, void *, unsigned));
260 int gzread(gz, buf, len) in gzread() function
439 len = gzread(in, buf, sizeof(buf));
DINDEX48 gzread.c
Dgzread.c288 int ZEXPORT gzread(file, buf, len) in gzread() function
412 ret = gzread(file, buf, 1);
DChangeLog178 - Correct spelling error in gzread.c
181 - Change gzread() and related to ignore junk after gzip streams
182 - Allow gzread() and related to continue after gzclearerr()
218 - Fix bug in gzread.c when end-of-file is reached
220 - Document gzread() capability to read concurrently written files
340 - Match type exactly in gz_load() invocation in gzread.c
389 - Avoid MSVC loss of data warnings in gzread.c, gzwrite.c
435 - Avoid void * arithmetic in gzread.c and gzwrite.c
446 - Add checks on len in gzread() and gzwrite()
463 - Fix premature EOF from gzread() in gzio.c [Brown]
[all …]
Dzconf.h84 # define gzread z_gzread macro
Dzlib.h1313 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
Dexample.c151 if (gzread(file, uncompr, (unsigned)uncomprLen) != len) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dgzio.c394 int ZEXPORT gzread (file, buf, len) in gzread() function
508 return gzread(file, &c, 1) == 1 ? c : -1;
548 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ;
847 size = gzread(file, s->outbuf, (uInt)size);
Dminigzip.c175 len = gzread(in, buf, sizeof(buf));
DChangeLog30 - Add error return to gzread() for format or i/o error [Levin]
37 - Fix crc check bug in gzread() after gzungetc() [Heiner]
344 - Fix bug in gzread() on concatenated file with 0x1f at end of buffer
391 - fix gzread and gztell for concatenated .gz files (Didier Le Botlan)
690 - allow gzread on concatenated .gz files
717 - fix error checking in gzread
787 - let again gzread copy uncompressed data unchanged (was working in 0.71)
802 - gzread no longer reads one extra byte in certain cases
823 - added transparent reading of non-gziped files in gzread.
824 - fixed bug in gzread (don't read crc as data)
Dzlib.h1106 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
Dexample.c122 if (gzread(file, uncompr, (unsigned)uncomprLen) != len) {
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
Dzconf.h90 # define gzread z_gzread macro
Dzlib.h1390 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/
DPython2710.inf243 Modules/zlib/gzread.c #