Lines Matching refs:file
4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
80 int gzbuffer(gzFile file, unsigned size);
81 int gzsetparams(gzFile file, int level, int strategy);
82 int gzread(gzFile file, voidp buf, unsigned len);
83 int gzwrite(gzFile file, voidpc buf, unsigned len);
84 int gzprintf(gzFile file, const char *format, ...);
85 int gzputs(gzFile file, const char *s);
86 char *gzgets(gzFile file, char *buf, int len);
87 int gzungetc(int c, gzFile file);
88 int gzputc(gzFile file, int c);
89 int gzflush(gzFile file, int flush);
90 z_off_t gzseek(gzFile file, z_off_t offset, int whence);
92 int gzrewind(gzFile file);
93 z_off_t gztell(gzFile file);
94 z_off64_t gztell64(gzFile file);
95 z_off_t gzoffset(gzFile file);
96 z_off64_t gzoffset64(gzFile file);
97 int gzeof(gzFile file);
98 int gzclose(gzFile file);
99 int gzclose_r(gzFile file);
100 int gzclose_w(gzFile file);
101 int gzdirect(gzFile file);
102 void gzclearerr(gzFile file);
103 const char *gzerror(gzFile file, int *errnum);
117 int gzvprintf(gzFile file, const char *format, va_list va);