Home
last modified time | relevance | path

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

/external/okhttp/okio/okio/src/test/java/okio/
DBufferedSourceTest.java589 long actual = source.readHexadecimalUnsignedLong(); in assertLongHexString()
596 assertEquals(-1, source.readHexadecimalUnsignedLong()); in longHexStringAcrossSegment()
602 source.readHexadecimalUnsignedLong(); in longHexStringTooLongThrows()
612 source.readHexadecimalUnsignedLong(); in longHexStringTooShortThrows()
622 source.readHexadecimalUnsignedLong(); in longHexEmptySourceThrows()
/external/okhttp/okio/okio/src/main/java/okio/
DBufferedSource.java88 long readHexadecimalUnsignedLong() throws IOException; in readHexadecimalUnsignedLong() method
DRealBufferedSource.java269 @Override public long readHexadecimalUnsignedLong() throws IOException { in readHexadecimalUnsignedLong() method in RealBufferedSource
284 return buffer.readHexadecimalUnsignedLong(); in readHexadecimalUnsignedLong()
DBuffer.java468 @Override public long readHexadecimalUnsignedLong() {
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DHttpConnection.java479 bytesRemainingInChunk = source.readHexadecimalUnsignedLong(); in readChunkSize()