Home
last modified time | relevance | path

Searched defs:readByteString (Results 1 – 22 of 22) sorted by relevance

/external/okio/okio/src/commonMain/kotlin/okio/
DBufferedSource.kt239 fun readByteString(): ByteString method
242 fun readByteString(byteCount: Long): ByteString method
/external/okio/okio/src/nonJvmMain/kotlin/okio/
DBufferedSource.kt47 actual fun readByteString(): ByteString method
49 actual fun readByteString(byteCount: Long): ByteString method
DRealBufferedSource.kt60 override fun readByteString(): ByteString = commonReadByteString() method in okio.RealBufferedSource
61 override fun readByteString(byteCount: Long): ByteString = commonReadByteString(byteCount) method in okio.RealBufferedSource
DBuffer.kt126 override fun readByteString(): ByteString = commonReadByteString() in <lambda>() method in okio.Buffer
128 override fun readByteString(byteCount: Long): ByteString = commonReadByteString(byteCount) in <lambda>() method in okio.Buffer
/external/okio/samples/src/jvmMain/kotlin/okio/samples/
DHashing.kt77 fun readByteString(file: File): ByteString { in <lambda>() method
/external/okio/okio/jvm/jmh/src/jmh/java/com/squareup/okio/benchmarks/
DReadByteStringBenchmark.java58 public void readByteString() throws IOException { in readByteString() method in ReadByteStringBenchmark
/external/okio/okio/src/jvmMain/kotlin/okio/
DBufferedSource.kt74 actual fun readByteString(): ByteString method
77 actual fun readByteString(byteCount: Long): ByteString method
DRealBufferedSource.kt70 override fun readByteString(): ByteString = commonReadByteString() in buffer() method in okio.RealBufferedSource
71 override fun readByteString(byteCount: Long): ByteString = commonReadByteString(byteCount) in buffer() method in okio.RealBufferedSource
DBuffer.kt284 override fun readByteString(): ByteString = commonReadByteString() in <lambda>() method in okio.Buffer
287 override fun readByteString(byteCount: Long) = commonReadByteString(byteCount) in <lambda>() method in okio.Buffer
DByteString.kt263 fun InputStream.readByteString(byteCount: Int): ByteString { in getByte() method
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
DBufferedSource.java100 ByteString readByteString() throws IOException; in readByteString() method
103 ByteString readByteString(long byteCount) throws IOException; in readByteString() method
DRealBufferedSource.java82 @Override public ByteString readByteString() throws IOException { in readByteString() method in RealBufferedSource
87 @Override public ByteString readByteString(long byteCount) throws IOException { in readByteString() method in RealBufferedSource
/external/okhttp/okio/okio/src/main/java/okio/
DBufferedSource.java98 ByteString readByteString() throws IOException; in readByteString() method
101 ByteString readByteString(long byteCount) throws IOException; in readByteString() method
DRealBufferedSource.java81 @Override public ByteString readByteString() throws IOException { in readByteString() method in RealBufferedSource
86 @Override public ByteString readByteString(long byteCount) throws IOException { in readByteString() method in RealBufferedSource
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/framed/
DNameValueBlockReader.java101 private ByteString readByteString() throws IOException { in readByteString() method in NameValueBlockReader
DHpack.java345 ByteString readByteString() throws IOException { in readByteString() method in Hpack.Reader
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
DNameValueBlockReader.java100 private ByteString readByteString() throws IOException { in readByteString() method in NameValueBlockReader
DHpack.java344 ByteString readByteString() throws IOException { in readByteString() method in Hpack.Reader
/external/okio/samples/src/jvmMain/java/okio/samples/
DHashing.java73 public ByteString readByteString(File file) throws IOException { in readByteString() method in Hashing
/external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/framed/
DHpack.java348 ByteString readByteString() throws IOException { in readByteString() method in Hpack.Reader
/external/okhttp/okio/okio/src/test/java/okio/
DBufferedSourceTest.java361 @Test public void readByteString() throws IOException { in readByteString() method in BufferedSourceTest
/external/okio/okio/src/jvmTest/java/okio/
DBufferedSourceTest.java554 @Test public void readByteString() throws IOException { in readByteString() method in BufferedSourceTest