Searched refs:ZeroCopyOutputStream (Results 1 - 25 of 68) sorted by relevance

123

/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream.cc43 ZeroCopyOutputStream::~ZeroCopyOutputStream() {}
H A Dzero_copy_stream.h35 // This file contains the ZeroCopyInputStream and ZeroCopyOutputStream
85 // ZeroCopyOutputStream example:
87 // // "infile" but a ZeroCopyOutputStream for "outfile".
90 // ZeroCopyOutputStream* output = new FileOutputStream(outfd);
120 class ZeroCopyOutputStream;
181 class LIBPROTOBUF_EXPORT ZeroCopyOutputStream { class in namespace:google::protobuf::io
183 inline ZeroCopyOutputStream() {} function in class:google::protobuf::io::ZeroCopyOutputStream
184 virtual ~ZeroCopyOutputStream();
231 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ZeroCopyOutputStream);
H A Dgzip_stream.h40 // GzipOutputStream is an ZeroCopyOutputStream that compresses data to
41 // an underlying ZeroCopyOutputStream.
110 class LIBPROTOBUF_EXPORT GzipOutputStream : public ZeroCopyOutputStream {
141 explicit GzipOutputStream(ZeroCopyOutputStream* sub_stream);
145 ZeroCopyOutputStream* sub_stream,
178 // implements ZeroCopyOutputStream ---------------------------------
184 ZeroCopyOutputStream* sub_stream_;
195 void Init(ZeroCopyOutputStream* sub_stream, const Options& options);
H A Dprinter.h35 // Utility class for writing text to a ZeroCopyOutputStream.
48 class ZeroCopyOutputStream; // zero_copy_stream.h
68 Printer(ZeroCopyOutputStream* output, char variable_delimiter);
121 ZeroCopyOutputStream* const output_;
H A Dzero_copy_stream_impl_lite.h93 // A ZeroCopyOutputStream backed by an in-memory array of bytes.
94 class LIBPROTOBUF_EXPORT ArrayOutputStream : public ZeroCopyOutputStream {
106 // implements ZeroCopyOutputStream ---------------------------------
125 // A ZeroCopyOutputStream which appends bytes to a string.
126 class LIBPROTOBUF_EXPORT StringOutputStream : public ZeroCopyOutputStream {
138 // implements ZeroCopyOutputStream ---------------------------------
256 // interface and make a ZeroCopyOutputStream based on it, simply implement
271 // A ZeroCopyOutputStream which writes to a CopyingOutputStream. This is
278 class LIBPROTOBUF_EXPORT CopyingOutputStreamAdaptor : public ZeroCopyOutputStream {
297 // implements ZeroCopyOutputStream
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream.cc43 ZeroCopyOutputStream::~ZeroCopyOutputStream() {}
H A Dzero_copy_stream.h35 // This file contains the ZeroCopyInputStream and ZeroCopyOutputStream
85 // ZeroCopyOutputStream example:
87 // // "infile" but a ZeroCopyOutputStream for "outfile".
90 // ZeroCopyOutputStream* output = new FileOutputStream(outfd);
120 class ZeroCopyOutputStream;
181 class LIBPROTOBUF_EXPORT ZeroCopyOutputStream { class in namespace:google::protobuf::io
183 inline ZeroCopyOutputStream() {} function in class:google::protobuf::io::ZeroCopyOutputStream
184 virtual ~ZeroCopyOutputStream();
231 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ZeroCopyOutputStream);
H A Dprinter.h35 // Utility class for writing text to a ZeroCopyOutputStream.
48 class ZeroCopyOutputStream; // zero_copy_stream.h
68 Printer(ZeroCopyOutputStream* output, char variable_delimiter);
117 ZeroCopyOutputStream* const output_;
H A Dgzip_stream.h40 // GzipOutputStream is an ZeroCopyOutputStream that compresses data to
41 // an underlying ZeroCopyOutputStream.
109 class LIBPROTOBUF_EXPORT GzipOutputStream : public ZeroCopyOutputStream {
140 explicit GzipOutputStream(ZeroCopyOutputStream* sub_stream);
144 ZeroCopyOutputStream* sub_stream,
149 ZeroCopyOutputStream* sub_stream,
176 // implements ZeroCopyOutputStream ---------------------------------
182 ZeroCopyOutputStream* sub_stream_;
193 void Init(ZeroCopyOutputStream* sub_stream, const Options& options);
H A Dzero_copy_stream_impl_lite.h93 // A ZeroCopyOutputStream backed by an in-memory array of bytes.
94 class LIBPROTOBUF_EXPORT ArrayOutputStream : public ZeroCopyOutputStream {
106 // implements ZeroCopyOutputStream ---------------------------------
125 // A ZeroCopyOutputStream which appends bytes to a string.
126 class LIBPROTOBUF_EXPORT StringOutputStream : public ZeroCopyOutputStream {
138 // implements ZeroCopyOutputStream ---------------------------------
256 // interface and make a ZeroCopyOutputStream based on it, simply implement
271 // A ZeroCopyOutputStream which writes to a CopyingOutputStream. This is
278 class LIBPROTOBUF_EXPORT CopyingOutputStreamAdaptor : public ZeroCopyOutputStream {
297 // implements ZeroCopyOutputStream
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dcode_generator.h49 namespace io { class ZeroCopyOutputStream; }
95 // ZeroCopyOutputStream that writes to the file. The caller takes ownership
104 virtual io::ZeroCopyOutputStream* Open(const string& filename) = 0;
106 // Creates a ZeroCopyOutputStream which will insert code into the given file
112 virtual io::ZeroCopyOutputStream* OpenForInsert(
H A Dzip_writer.h43 ZipWriter(io::ZeroCopyOutputStream* raw_output);
57 io::ZeroCopyOutputStream* raw_output_;
H A Dplugin.cc70 virtual io::ZeroCopyOutputStream* Open(const string& filename) {
76 virtual io::ZeroCopyOutputStream* OpenForInsert(
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dzip_writer.h73 ZipWriter(io::ZeroCopyOutputStream* raw_output);
87 io::ZeroCopyOutputStream* raw_output_;
H A Dcode_generator.h49 namespace io { class ZeroCopyOutputStream; }
96 // ZeroCopyOutputStream that writes to the file. The caller takes ownership
105 virtual io::ZeroCopyOutputStream* Open(const string& filename) = 0;
107 // Creates a ZeroCopyOutputStream which will insert code into the given file
113 virtual io::ZeroCopyOutputStream* OpenForInsert(
H A Dplugin.cc72 virtual io::ZeroCopyOutputStream* Open(const string& filename) {
78 virtual io::ZeroCopyOutputStream* OpenForInsert(
H A Dcode_generator.cc47 io::ZeroCopyOutputStream* GeneratorContext::OpenForInsert(
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dmessage_lite.h51 class ZeroCopyOutputStream;
180 bool SerializeToZeroCopyStream(io::ZeroCopyOutputStream* output) const;
182 bool SerializePartialToZeroCopyStream(io::ZeroCopyOutputStream* output) const;
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_generator.cc104 scoped_ptr<io::ZeroCopyOutputStream> output(
112 scoped_ptr<io::ZeroCopyOutputStream> output(
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_generator.cc102 scoped_ptr<io::ZeroCopyOutputStream> output(
110 scoped_ptr<io::ZeroCopyOutputStream> output(
/external/protobuf/src/google/protobuf/
H A Dtext_format.h61 static bool Print(const Message& message, io::ZeroCopyOutputStream* output);
67 io::ZeroCopyOutputStream* output);
93 bool Print(const Message& message, io::ZeroCopyOutputStream* output);
96 io::ZeroCopyOutputStream* output);
H A Dmessage_lite.h173 bool SerializeToZeroCopyStream(io::ZeroCopyOutputStream* output) const;
175 bool SerializePartialToZeroCopyStream(io::ZeroCopyOutputStream* output) const;
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_generator.cc102 scoped_ptr<io::ZeroCopyOutputStream> output(
114 scoped_ptr<io::ZeroCopyOutputStream> srclist_raw_output(
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_generator.cc96 scoped_ptr<io::ZeroCopyOutputStream> output(
108 scoped_ptr<io::ZeroCopyOutputStream> srclist_raw_output(
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/
H A Dpython_plugin_unittest.cc70 scoped_ptr<io::ZeroCopyOutputStream> output(

Completed in 1879 milliseconds

123