OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:refillBuffer
(Results
1 - 2
of
2
) sorted by null
/external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java
646
return bufferPos == bufferSize && !
refillBuffer
(false);
659
* input. If {@code mustSucceed} is true,
refillBuffer
() gurantees that
662
*
refillBuffer
() returns false if no more bytes were available.
664
private boolean
refillBuffer
(final boolean mustSucceed) throws IOException {
667
"
refillBuffer
() called when buffer wasn't empty.");
714
refillBuffer
(true);
753
// We want to use
refillBuffer
() and then copy from the buffer into our
756
refillBuffer
(true);
762
refillBuffer
(true);
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java
590
return bufferPos == bufferSize && !
refillBuffer
(false);
595
* input. If {@code mustSucceed} is true,
refillBuffer
() gurantees that
598
*
refillBuffer
() returns false if no more bytes were available.
600
private boolean
refillBuffer
(final boolean mustSucceed) throws IOException {
603
"
refillBuffer
() called when buffer wasn't empty.");
650
refillBuffer
(true);
689
// We want to use
refillBuffer
() and then copy from the buffer into our
692
refillBuffer
(true);
698
refillBuffer
(true);
Completed in 29 milliseconds