Home
last modified time | relevance | path

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

/third_party/protobuf/csharp/src/Google.Protobuf/
DSegmentedBufferHelper.cs211 int totalBytesRead = in RefillFromReadOnlySequence()
213 if (totalBytesRead < 0 || totalBytesRead > state.sizeLimit) in RefillFromReadOnlySequence()
262 int totalBytesRead = in RefillFromCodedInputStream()
264 if (totalBytesRead < 0 || totalBytesRead > state.sizeLimit) in RefillFromCodedInputStream()
/third_party/flutter/skia/experimental/Networking/
DSkSockets.cpp88 int totalBytesRead = 0; in readPacket() local
165 totalBytesRead += bytesReadInTransfer; in readPacket()
168 return totalBytesRead; in readPacket()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStream.java3119 private int totalBytesRead; field in CodedInputStream.IterableDirectByteBufferDecoder
3147 startOffset = totalBytesRead = 0; in IterableDirectByteBufferDecoder()
3169 totalBytesRead += (int) (currentByteBufferPos - currentByteBufferStartPos); in tryGetNextByteBuffer()
3727 startOffset = (int) (totalBytesRead + currentByteBufferPos - currentByteBufferStartPos); in resetSizeCounter()
3776 return totalBytesRead + currentByteBufferPos - currentByteBufferStartPos == totalBufferSize; in isAtEnd()
3782 (totalBytesRead - startOffset + currentByteBufferPos - currentByteBufferStartPos); in getTotalBytesRead()
3858 - totalBytesRead in skipRawBytes()
3897 (totalBufferSize - totalBytesRead - currentByteBufferPos + currentByteBufferStartPos); in remaining()