HomeSort by relevance Sort by last modified time
    Searched defs:gzread (Results 1 - 5 of 5) sorted by null

  /external/zlib/
gzread.c 0 /* 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);
gzio.c 392 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
zconf.h 72 # define gzread z_gzread macro
  /external/qemu/distrib/zlib-1.2.3/
gzio.c 392 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
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
zconf.h 61 # define gzread z_gzread macro

Completed in 40 milliseconds