OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:readIntLe
(Results
1 - 5
of
5
) sorted by null
/external/okhttp/okio/src/main/java/okio/
BufferedSource.java
56
int
readIntLe
() throws IOException;
GzipSource.java
168
checkEqual("CRC", source.
readIntLe
(), (int) crc.getValue());
169
checkEqual("ISIZE", source.
readIntLe
(), inflater.getTotalOut());
RealBufferedSource.java
114
@Override public int
readIntLe
() throws IOException {
116
return buffer.
readIntLe
();
OkBuffer.java
268
@Override public int
readIntLe
() {
/external/okhttp/okio/src/test/java/okio/
OkBufferTest.java
471
@Test public void
readIntLe
() throws Exception {
477
assertEquals(0x10efcdab, data.
readIntLe
());
478
assertEquals(0x21436587, data.
readIntLe
());
Completed in 78 milliseconds