Searched defs:gzread (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/zlib/
H A Dgzread.c0 /* gzread.c -- zlib functions for reading gzip files
362 int ZEXPORT gzread(file, buf, len) function
476 /* nothing there -- try gzread() */
477 ret = gzread(file, buf, 1);
H A Dmozzconf.h74 #define gzread MOZ_Z_gzread macro
H A Dzconf.h75 # define gzread z_gzread macro
/external/zlib/src/
H A Dgzread.c0 /* gzread.c -- zlib functions for reading gzip files
288 int ZEXPORT gzread(file, buf, len) function
411 /* nothing there -- try gzread() */
412 ret = gzread(file, buf, 1);
H A Dzconf.h84 # define gzread z_gzread macro
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DGZipStream.cs30 private static extern int gzread(IntPtr gzFile, int data, int length); method in class:DotZLib.GZipStream
166 result = gzread(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count);
/external/zlib/src/test/
H A Dminigzip.c258 int gzread OF((gzFile, void *, unsigned));
260 int gzread(gz, buf, len) function
439 len = gzread(in, buf, sizeof(buf));
/external/qemu/distrib/zlib-1.2.3/
H A Dgzio.c392 gzread returns the number of bytes actually read (0 for end of file).
394 int ZEXPORT gzread (file, buf, len) function
508 return gzread(file, &c, 1) == 1 ? c : -1;
548 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ;
760 Sets the starting position for the next gzread or gzwrite on the given
847 size = gzread(file, s->outbuf, (uInt)size);
877 Returns the starting position for the next gzread or gzwrite on the
/external/zlib/
H A Dzconf.h84 # define gzread z_gzread macro

Completed in 104 milliseconds