Searched refs:GzipOutputStream (Results 1 - 4 of 4) sorted by relevance

/external/protobuf/src/google/protobuf/io/
H A Dgzip_stream.h34 // GzipOutputStream.
40 // GzipOutputStream is an ZeroCopyOutputStream that compresses data to
110 class LIBPROTOBUF_EXPORT GzipOutputStream : public ZeroCopyOutputStream { class in namespace:google::protobuf::io
140 // Create a GzipOutputStream with default options.
141 explicit GzipOutputStream(ZeroCopyOutputStream* sub_stream);
143 // Create a GzipOutputStream with the given options.
144 GzipOutputStream(
148 virtual ~GzipOutputStream();
202 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(GzipOutputStream);
H A Dgzip_stream.cc34 // GzipOutputStream.
193 GzipOutputStream::Options::Options()
199 GzipOutputStream::GzipOutputStream(ZeroCopyOutputStream* sub_stream) { function in class:google::protobuf::io::GzipOutputStream
203 GzipOutputStream::GzipOutputStream(ZeroCopyOutputStream* sub_stream, function in class:google::protobuf::io::GzipOutputStream
208 void GzipOutputStream::Init(ZeroCopyOutputStream* sub_stream,
242 GzipOutputStream::~GzipOutputStream() {
248 int GzipOutputStream
[all...]
H A Dzero_copy_stream_unittest.cc125 string Compress(const string& data, const GzipOutputStream::Options& options);
356 GzipOutputStream::Options options;
357 options.format = GzipOutputStream::GZIP;
361 GzipOutputStream gzout(&output, options);
391 GzipOutputStream::Options options;
392 options.format = GzipOutputStream::GZIP;
396 GzipOutputStream gzout(&output, options);
423 GzipOutputStream::Options options;
424 options.format = GzipOutputStream::GZIP;
428 GzipOutputStream gzou
[all...]
/external/protobuf/src/google/protobuf/testing/
H A Dzcgzip.cc35 // Test program to verify that GzipOutputStream is compatible with command line
36 // gzip or java.util.zip.GzipOutputStream
58 using google::protobuf::io::GzipOutputStream;
62 GzipOutputStream out(&fout);

Completed in 56 milliseconds