Home
last modified time | relevance | path

Searched refs:OstreamOutputStream (Results 1 – 7 of 7) sorted by relevance

/third_party/protobuf/src/google/protobuf/io/
Dzero_copy_stream_impl.cc285 OstreamOutputStream::OstreamOutputStream(std::ostream* output, int block_size) in OstreamOutputStream() function in google::protobuf::io::OstreamOutputStream
288 OstreamOutputStream::~OstreamOutputStream() { impl_.Flush(); } in ~OstreamOutputStream()
290 bool OstreamOutputStream::Next(void** data, int* size) { in Next()
294 void OstreamOutputStream::BackUp(int count) { impl_.BackUp(count); } in BackUp()
296 int64_t OstreamOutputStream::ByteCount() const { return impl_.ByteCount(); } in ByteCount()
298 OstreamOutputStream::CopyingOstreamOutputStream::CopyingOstreamOutputStream( in CopyingOstreamOutputStream()
302 OstreamOutputStream::CopyingOstreamOutputStream::~CopyingOstreamOutputStream() { in ~CopyingOstreamOutputStream()
305 bool OstreamOutputStream::CopyingOstreamOutputStream::Write(const void* buffer, in Write()
Dzero_copy_stream_impl.h260 class PROTOBUF_EXPORT OstreamOutputStream : public ZeroCopyOutputStream {
266 explicit OstreamOutputStream(std::ostream* stream, int block_size = -1);
267 ~OstreamOutputStream() override;
294 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(OstreamOutputStream);
Dzero_copy_stream_unittest.cc883 OstreamOutputStream output(&stream, kBlockSizes[i]); in TEST_F()
899 OstreamOutputStream output(&stream, kBlockSizes[i]); in TEST_F()
/third_party/protobuf/src/google/protobuf/util/
Ddelimited_message_util.cc50 io::OstreamOutputStream zero_copy_output(output); in SerializeDelimitedToOstream()
/third_party/protobuf/src/google/protobuf/
Dmessage_lite.cc437 io::OstreamOutputStream zero_copy_output(output); in SerializeToOstream()
444 io::OstreamOutputStream zero_copy_output(output); in SerializePartialToOstream()
/third_party/protobuf/
Dlibprotobuf_lite.map297 "google::protobuf::io::OstreamOutputStream::OstreamOutputStream(std::ostream*, int)";
298 "google::protobuf::io::OstreamOutputStream::~OstreamOutputStream()";
348 …"google::protobuf::io::OstreamOutputStream::OstreamOutputStream(std::__h::basic_ostream<char, std:…
472 …"google::protobuf::io::OstreamOutputStream::OstreamOutputStream(std::__1::basic_ostream<char, std:…
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
Dobjectivec_helpers.cc1271 io::OstreamOutputStream data_outputstream(&data_stringstream); in Data()