Searched refs:gzofstream (Results 1 – 7 of 7) sorted by relevance
/external/zlib/src/contrib/iostream/ |
D | zfstream.h | 47 friend class gzofstream; variable 48 friend gzofstream &setcompressionlevel( gzofstream &, int ); 49 friend gzofstream &setcompressionstrategy( gzofstream &, int ); 80 class gzofstream : public gzfilestream_common, public ostream { 84 gzofstream(); 85 gzofstream( const char *name, int io_mode = ios::out ); 86 gzofstream( int fd, int io_mode = ios::out ); 88 virtual ~gzofstream(); 93 friend gzofstream &operator<<(gzofstream &, const gzomanip<T> &); 95 gzomanip(gzofstream &(*f)(gzofstream &, T), T v) : func(f), val(v) { } in gzomanip() argument [all …]
|
D | zfstream.cpp | 311 gzofstream::gzofstream() : in gzofstream() function in gzofstream 317 gzofstream::gzofstream( const char *name, int io_mode ) : in gzofstream() function in gzofstream 323 gzofstream::gzofstream( int fd, int io_mode ) : in gzofstream() function in gzofstream 329 gzofstream::~gzofstream() { } in ~gzofstream()
|
D | test.cpp | 8 gzofstream os( 1, ios::out ); in main()
|
/external/zlib/src/contrib/iostream3/ |
D | zfstream.h | 323 class gzofstream : public std::ostream 327 gzofstream(); 335 gzofstream(const char* name, 344 gzofstream(int fd, 418 friend gzofstream& 419 operator<<(gzofstream&, 423 gzomanip2(gzofstream& (*f)(gzofstream&, T1, T2), 428 gzofstream& 429 (*func)(gzofstream&, T1, T2); 439 inline gzofstream& [all …]
|
D | zfstream.cc | 429 gzofstream::gzofstream() in gzofstream() function in gzofstream 434 gzofstream::gzofstream(const char* name, in gzofstream() function in gzofstream 443 gzofstream::gzofstream(int fd, in gzofstream() function in gzofstream 453 gzofstream::open(const char* name, in open() 464 gzofstream::attach(int fd, in attach() 475 gzofstream::close() in close()
|
D | README | 4 gzofstream outf("blah.gz"); 10 The gzifstream and gzofstream classes were originally written by Kevin Ruland 18 library naming scheme. The new version of gzifstream/gzofstream/gzfilebuf differs
|
D | test.cc | 13 gzofstream outf; in main()
|