Home
last modified time | relevance | path

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

/external/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStream.java1035 return bufferPos == bufferSize && !tryRefillBuffer(1); in isAtEnd()
1061 if (!tryRefillBuffer(n)) { in refillBuffer()
1074 private boolean tryRefillBuffer(int n) throws IOException { in tryRefillBuffer() method in CodedInputStream
1114 return (bufferSize >= n) ? true : tryRefillBuffer(n); in tryRefillBuffer()