Home
last modified time | relevance | path

Searched refs:IstreamInputStream (Results 1 – 5 of 5) sorted by relevance

/external/protobuf/src/google/protobuf/io/
Dzero_copy_stream_impl.cc252 IstreamInputStream::IstreamInputStream(std::istream* input, int block_size) in IstreamInputStream() function in google::protobuf::io::IstreamInputStream
255 bool IstreamInputStream::Next(const void** data, int* size) { in Next()
259 void IstreamInputStream::BackUp(int count) { impl_.BackUp(count); } in BackUp()
261 bool IstreamInputStream::Skip(int count) { return impl_.Skip(count); } in Skip()
263 int64 IstreamInputStream::ByteCount() const { return impl_.ByteCount(); } in ByteCount()
265 IstreamInputStream::CopyingIstreamInputStream::CopyingIstreamInputStream( in CopyingIstreamInputStream()
269 IstreamInputStream::CopyingIstreamInputStream::~CopyingIstreamInputStream() {} in ~CopyingIstreamInputStream()
271 int IstreamInputStream::CopyingIstreamInputStream::Read(void* buffer, in Read()
Dzero_copy_stream_impl.h215 class PROTOBUF_EXPORT IstreamInputStream : public ZeroCopyInputStream {
221 explicit IstreamInputStream(std::istream* stream, int block_size = -1);
249 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(IstreamInputStream);
Dzero_copy_stream_unittest.cc888 IstreamInputStream input(&stream, kBlockSizes[j]); in TEST_F()
904 IstreamInputStream input(&stream, kBlockSizes[j]); in TEST_F()
/external/protobuf/src/google/protobuf/util/
Ddelimited_message_util_test.cc62 io::IstreamInputStream zstream(&stream); in TEST()
/external/protobuf/src/google/protobuf/
Dmessage_lite.cc292 io::IstreamInputStream zero_copy_input(input); in ParseFromIstream()
297 io::IstreamInputStream zero_copy_input(input); in ParsePartialFromIstream()