Searched defs:readByteString (Results 1 - 8 of 8) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DNameValueBlockReader.java90 ByteString name = readByteString().toAsciiLowercase();
91 ByteString values = readByteString();
100 private ByteString readByteString() throws IOException { method in class:NameValueBlockReader
102 return source.readByteString(length);
H A DHpack.java246 ByteString value = readByteString();
251 ByteString name = checkLowercase(readByteString());
252 ByteString value = readByteString();
259 ByteString value = readByteString();
264 ByteString name = checkLowercase(readByteString());
265 ByteString value = readByteString();
344 ByteString readByteString() throws IOException { method in class:Hpack.Reader
352 return source.readByteString(length);
/external/okhttp/okio/okio/src/main/java/okio/
H A DBufferedSource.java98 ByteString readByteString() throws IOException; method in interface:BufferedSource
101 ByteString readByteString(long byteCount) throws IOException; method in interface:BufferedSource
H A DRealBufferedSource.java81 @Override public ByteString readByteString() throws IOException { method in class:RealBufferedSource
83 return buffer.readByteString();
86 @Override public ByteString readByteString(long byteCount) throws IOException { method in class:RealBufferedSource
88 return buffer.readByteString(byteCount);
201 + " content=" + data.readByteString().hex() + "...");
H A DBuffer.java524 @Override public ByteString readByteString() { method in class:Buffer
528 @Override public ByteString readByteString(long byteCount) throws EOFException { method in class:Buffer
610 + " content=" + data.readByteString().hex() + "...");
1391 ByteString data = clone().readByteString();
/external/okhttp/okio/okio/src/test/java/okio/
H A DBufferedSourceTest.java361 @Test public void readByteString() throws IOException { method in class:BufferedSourceTest
363 assertEquals("abcd" + repeat('e', Segment.SIZE), source.readByteString().utf8());
368 assertEquals("abc", source.readByteString(3).utf8());
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 146 milliseconds