Home
last modified time | relevance | path

Searched defs:readByteArray (Results 1 – 25 of 31) sorted by relevance

12

/external/okio/okio/src/commonMain/kotlin/okio/
DBufferedSource.kt272 fun readByteArray(): ByteArray method
275 fun readByteArray(byteCount: Long): ByteArray method
/external/okio/okio/src/nonJvmMain/kotlin/okio/
DBufferedSource.kt53 actual fun readByteArray(): ByteArray method
55 actual fun readByteArray(byteCount: Long): ByteArray method
DRealBufferedSource.kt63 override fun readByteArray(): ByteArray = commonReadByteArray() method in okio.RealBufferedSource
64 override fun readByteArray(byteCount: Long): ByteArray = commonReadByteArray(byteCount) method in okio.RealBufferedSource
DBuffer.kt148 override fun readByteArray(): ByteArray = commonReadByteArray() in <lambda>() method in okio.Buffer
150 override fun readByteArray(byteCount: Long): ByteArray = commonReadByteArray(byteCount) in <lambda>() method in okio.Buffer
/external/okio/okio/src/jvmMain/kotlin/okio/
DBufferedSource.kt83 actual fun readByteArray(): ByteArray method
86 actual fun readByteArray(byteCount: Long): ByteArray method
DRealBufferedSource.kt73 override fun readByteArray(): ByteArray = commonReadByteArray() in buffer() method in okio.RealBufferedSource
74 override fun readByteArray(byteCount: Long): ByteArray = commonReadByteArray(byteCount) in buffer() method in okio.RealBufferedSource
DBuffer.kt340 override fun readByteArray() = commonReadByteArray() in <lambda>() method in okio.Buffer
343 override fun readByteArray(byteCount: Long): ByteArray = commonReadByteArray(byteCount) in <lambda>() method in okio.Buffer
/external/okhttp/okio/okio/src/main/java/okio/
DBufferedSource.java104 byte[] readByteArray() throws IOException; in readByteArray() method
107 byte[] readByteArray(long byteCount) throws IOException; in readByteArray() method
DRealBufferedSource.java91 @Override public byte[] readByteArray() throws IOException { in readByteArray() method in RealBufferedSource
96 @Override public byte[] readByteArray(long byteCount) throws IOException { in readByteArray() method in RealBufferedSource
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
DBufferedSource.java106 byte[] readByteArray() throws IOException; in readByteArray() method
109 byte[] readByteArray(long byteCount) throws IOException; in readByteArray() method
DRealBufferedSource.java92 @Override public byte[] readByteArray() throws IOException { in readByteArray() method in RealBufferedSource
97 @Override public byte[] readByteArray(long byteCount) throws IOException { in readByteArray() method in RealBufferedSource
/external/icu/android_icu4j/libcore_bridge/src/java/com/android/i18n/timezone/internal/
DBufferIterator.java48 public abstract void readByteArray(byte[] bytes, int arrayOffset, int byteCount); in readByteArray() method in BufferIterator
DByteBufferIterator.java48 public void readByteArray(byte[] bytes, int arrayOffset, int byteCount) { in readByteArray() method in ByteBufferIterator
DNioBufferIterator.java69 public void readByteArray(byte[] bytes, int arrayOffset, int byteCount) { in readByteArray() method in NioBufferIterator
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowMemoryMappedFile.java109 @Override public void readByteArray(byte[] dst, int dstOffset, int byteCount) { in readByteArray() method in ShadowMemoryMappedFile.RoboBufferIterator
DShadowParcel.java548 public byte[] readByteArray() { in readByteArray() method in ShadowParcel.ByteBuffer
563 public boolean readByteArray(byte[] dest, int destLen) { in readByteArray() method in ShadowParcel.ByteBuffer
/external/okhttp/okio/okio/src/test/java/okio/
DBufferedSourceTest.java349 @Test public void readByteArray() throws IOException { in readByteArray() method in BufferedSourceTest
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStream.java328 public abstract byte[] readByteArray() throws IOException; in readByteArray() method in CodedInputStream
914 public byte[] readByteArray() throws IOException { in readByteArray() method in CodedInputStream.ArrayDecoder
1639 public byte[] readByteArray() throws IOException { in readByteArray() method in CodedInputStream.UnsafeDirectNioDecoder
2388 public byte[] readByteArray() throws IOException { in readByteArray() method in CodedInputStream.StreamDecoder
3499 public byte[] readByteArray() throws IOException { in readByteArray() method in CodedInputStream.IterableDirectByteBufferDecoder
/external/skqp/src/core/
DSkReadBuffer.cpp230 bool SkReadBuffer::readByteArray(void* value, size_t size) { in readByteArray() function in SkReadBuffer
DSkReadBuffer.h316 bool readByteArray (void*, size_t) { return false; } in readByteArray() function
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DPacketStream.java573 byte[] readByteArray(int length) { in readByteArray() method in PacketStream
/external/skia/src/core/
DSkReadBuffer.cpp263 bool SkReadBuffer::readByteArray(void* value, size_t size) { in readByteArray() function in SkReadBuffer
/external/okio/okio/src/jvmTest/java/okio/
DBufferedSourceTest.java529 @Test public void readByteArray() throws IOException { in readByteArray() method in BufferedSourceTest
/external/okio/okio/src/commonTest/kotlin/okio/
DAbstractBufferedSourceTest.kt406 @Test fun readByteArray() { in readByteArray() method in okio.AbstractBufferedSourceTest
/external/icu/android_icu4j/testing/src/com/android/i18n/test/timezone/
DZoneInfoDataTest.java922 public void readByteArray(byte[] bytes, int arrayOffset, int byteCount) { in readByteArray() method in ZoneInfoDataTest.ByteBufferIterator

12