Searched refs:LimitedInputStream (Results 1 - 7 of 7) sorted by relevance
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | LimitedInputStream.cs | 43 internal sealed class LimitedInputStream : Stream class 48 internal LimitedInputStream(Stream proxied, int size) in LimitedInputStream() method in Google.Protobuf.LimitedInputStream
|
H A D | MessageExtensions.cs | 302 Stream limitedStream = new LimitedInputStream(input, size); in MergeDelimitedFrom()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | AbstractMessageLite.java | 279 static final class LimitedInputStream extends FilterInputStream { class in AbstractMessageLite.Builder 282 LimitedInputStream(InputStream in, int limit) { in LimitedInputStream() method in AbstractMessageLite.Builder.LimitedInputStream 335 final InputStream limitedInput = new LimitedInputStream(input, size); in mergeDelimitedFrom()
|
H A D | AbstractParser.java | 33 import com.google.protobuf.AbstractMessageLite.Builder.LimitedInputStream; 254 InputStream limitedInput = new LimitedInputStream(input, size); in parsePartialDelimitedFrom()
|
H A D | UnknownFieldSet.java | 33 import com.google.protobuf.AbstractMessageLite.Builder.LimitedInputStream; 588 InputStream limitedInput = new LimitedInputStream(input, size); in mergeDelimitedFrom()
|
H A D | GeneratedMessageLite.java | 33 import com.google.protobuf.AbstractMessageLite.Builder.LimitedInputStream; 1731 InputStream limitedInput = new LimitedInputStream(input, size); in parsePartialDelimitedFrom()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
H A D | ByteStringTest.cs | 192 // Wrap the original stream in LimitedInputStream, which has CanSeek=false
in FromStream_NotSeekable() 193 var limitedStream = new LimitedInputStream(stream, 3);
in FromStream_NotSeekable() 217 // Wrap the original stream in LimitedInputStream, which has CanSeek=false
in FromStreamAsync_NotSeekable() 218 var limitedStream = new LimitedInputStream(stream, 3);
in FromStreamAsync_NotSeekable()
|
Completed in 12 milliseconds