HomeSort by relevance Sort by last modified time
    Searched defs:readByteString (Results 1 - 12 of 12) sorted by null

  /external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/
HpackRoundTripTest.java 57 caze.setWire(bytesOut.readByteString());
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
NameValueBlockReader.java 90 ByteString name = readByteString().toAsciiLowercase();
91 ByteString values = readByteString();
100 private ByteString readByteString() throws IOException {
102 return source.readByteString(length);
Hpack.java 246 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 {
352 return source.readByteString(length);
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/framed/
NameValueBlockReader.java 91 ByteString name = readByteString().toAsciiLowercase();
92 ByteString values = readByteString();
101 private ByteString readByteString() throws IOException {
103 return source.readByteString(length);
Hpack.java 247 ByteString value = readByteString();
252 ByteString name = checkLowercase(readByteString());
253 ByteString value = readByteString();
260 ByteString value = readByteString();
265 ByteString name = checkLowercase(readByteString());
266 ByteString value = readByteString();
345 ByteString readByteString() throws IOException {
353 return source.readByteString(length);
  /external/okhttp/okio/okio/src/main/java/okio/
BufferedSource.java 98 ByteString readByteString() throws IOException;
101 ByteString readByteString(long byteCount) throws IOException;
RealBufferedSource.java 81 @Override public ByteString readByteString() throws IOException {
83 return buffer.readByteString();
86 @Override public ByteString readByteString(long byteCount) throws IOException {
88 return buffer.readByteString(byteCount);
201 + " content=" + data.readByteString().hex() + "...");
  /external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
BufferedSource.java 100 ByteString readByteString() throws IOException;
103 ByteString readByteString(long byteCount) throws IOException;
RealBufferedSource.java 82 @Override public ByteString readByteString() throws IOException {
84 return buffer.readByteString();
87 @Override public ByteString readByteString(long byteCount) throws IOException {
89 return buffer.readByteString(byteCount);
202 + " content=" + data.readByteString().hex() + "...");
  /external/okhttp/okio/okio/src/test/java/okio/
Utf8Test.java 200 assertEquals(buffer.readByteString(), ByteString.decodeHex(hex));
219 ByteString actualUtf8 = new Buffer().writeUtf8(string).readByteString();
BufferedSourceTest.java 361 @Test public void readByteString() throws IOException {
363 assertEquals("abcd" + repeat('e', Segment.SIZE), source.readByteString().utf8());
368 assertEquals("abc", source.readByteString(3).utf8());
  /external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/framed/
Hpack.java 250 ByteString value = readByteString();
255 ByteString name = checkLowercase(readByteString());
256 ByteString value = readByteString();
263 ByteString value = readByteString();
268 ByteString name = checkLowercase(readByteString());
269 ByteString value = readByteString();
348 ByteString readByteString() throws IOException {
356 return source.readByteString(length);

Completed in 423 milliseconds