HomeSort by relevance Sort by last modified time
    Searched refs:LimitingInputStream (Results 1 - 3 of 3) sorted by null

  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.h 332 class LIBPROTOBUF_EXPORT LimitingInputStream : public ZeroCopyInputStream {
334 LimitingInputStream(ZeroCopyInputStream* input, int64 limit);
335 ~LimitingInputStream();
348 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(LimitingInputStream);
zero_copy_stream_impl.cc 413 LimitingInputStream::LimitingInputStream(ZeroCopyInputStream* input,
417 LimitingInputStream::~LimitingInputStream() {
422 bool LimitingInputStream::Next(const void** data, int* size) {
434 void LimitingInputStream::BackUp(int count) {
444 bool LimitingInputStream::Skip(int count) {
457 int64 LimitingInputStream::ByteCount() const {
zero_copy_stream_unittest.cc 684 // To test LimitingInputStream, we write our golden text to a buffer, then
686 // bytes written), then use a LimitingInputStream to limit it just to the
688 TEST_F(IoTest, LimitingInputStream) {
698 LimitingInputStream input(&array_input, output.ByteCount());

Completed in 34 milliseconds