Lines Matching defs:open
55 izstream(FILE* fp) : m_fp(0) { open(fp); }
56 izstream(const char* name) : m_fp(0) { open(name); }
60 * open() can be used to read a file which is not in gzip format;
65 void open(const char* name) {
70 void open(FILE* fp) {
162 open(fp, level);
166 open(name, level);
177 void open(const char* name, int level = Z_DEFAULT_COMPRESSION) {
184 /* open from a FILE pointer.
186 void open(FILE* fp, int level = Z_DEFAULT_COMPRESSION) {