Home
last modified time | relevance | path

Searched defs:byteCount (Results 26 – 50 of 858) sorted by relevance

12345678910>>...35

/aosp_15_r20/frameworks/base/core/java/android/util/jar/
H A DStrictJarFile.java347 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read()
384 public long skip(long byteCount) throws IOException { in skip()
400 @Override public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read()
465 @Override public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read()
486 @Override public long skip(long byteCount) throws IOException { in skip()
/aosp_15_r20/external/okio/okio/src/jvmTest/kotlin/okio/
H A DNioTest.kt113 val byteCount = channel.write(byteBuffer) in testWritableByteChannel() constant
130 val byteCount = channel.read(byteBuffer) in testReadableByteChannel() constant
H A DBufferedSinkTest.kt352 val byteCount = sink.write(nioByteBuffer) in writeNioBuffer() constant
366 val byteCount = sink.write(nioByteBuffer) in writeLargeNioBufferWritesAllData() constant
/aosp_15_r20/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
H A DByteString.java76 public static ByteString of(byte[] data, int offset, int byteCount) { in of()
183 public static ByteString read(InputStream in, int byteCount) throws IOException { in read()
311 public boolean rangeEquals(int offset, ByteString other, int otherOffset, int byteCount) { in rangeEquals()
320 public boolean rangeEquals(int offset, byte[] other, int otherOffset, int byteCount) { in rangeEquals()
H A DSegment.java110 public Segment split(int byteCount) { in split()
126 int byteCount = limit - pos; in compact() local
135 public void writeTo(Segment sink, int byteCount) { in writeTo()
H A DSegmentedByteString.java55 SegmentedByteString(Buffer buffer, int byteCount) { in SegmentedByteString()
186 int offset, ByteString other, int otherOffset, int byteCount) { in rangeEquals()
203 @Override public boolean rangeEquals(int offset, byte[] other, int otherOffset, int byteCount) { in rangeEquals()
/aosp_15_r20/external/okhttp/okio/okio/src/main/java/okio/
H A DByteString.java74 public static ByteString of(byte[] data, int offset, int byteCount) { in of()
181 public static ByteString read(InputStream in, int byteCount) throws IOException { in read()
309 public boolean rangeEquals(int offset, ByteString other, int otherOffset, int byteCount) { in rangeEquals()
318 public boolean rangeEquals(int offset, byte[] other, int otherOffset, int byteCount) { in rangeEquals()
H A DSegment.java109 public Segment split(int byteCount) { in split()
125 int byteCount = limit - pos; in compact() local
134 public void writeTo(Segment sink, int byteCount) { in writeTo()
H A DSegmentedByteString.java54 SegmentedByteString(Buffer buffer, int byteCount) { in SegmentedByteString()
185 int offset, ByteString other, int otherOffset, int byteCount) { in rangeEquals()
202 @Override public boolean rangeEquals(int offset, byte[] other, int otherOffset, int byteCount) { in rangeEquals()
/aosp_15_r20/libcore/luni/src/main/java/libcore/io/
H A DIoBridge.java598 …ad(@NonNull FileDescriptor fd, @NonNull byte[] bytes, int byteOffset, int byteCount) throws IOExce… in read()
639 …te(@NonNull FileDescriptor fd,@NonNull byte[] bytes, int byteOffset, int byteCount) throws IOExce… in write()
679 …to(@NonNull FileDescriptor fd, @NonNull byte[] bytes, int byteOffset, int byteCount, int flags, @N… in sendto()
749 …d, @NonNull FileDescriptor fd, @NonNull byte[] bytes, int byteOffset, int byteCount, int flags, @N… in recvfrom()
774 … postRecvfrom(boolean isRead, DatagramPacket packet, InetSocketAddress srcAddress, int byteCount) { in postRecvfrom()
/aosp_15_r20/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DHttp2.java430 long byteCount = hpackBuffer.size(); in pushPromise() local
445 long byteCount = hpackBuffer.size(); in headers() local
456 private void writeContinuationFrames(int streamId, long byteCount) throws IOException { in writeContinuationFrames()
483 int byteCount) throws IOException { in data()
490 void dataFrame(int streamId, byte flags, Buffer buffer, int byteCount) throws IOException { in dataFrame()
606 @Override public long read(Buffer sink, long byteCount) throws IOException { in read()
/aosp_15_r20/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/framed/
H A DHttp2.java432 long byteCount = hpackBuffer.size(); in pushPromise() local
447 long byteCount = hpackBuffer.size(); in headers() local
458 private void writeContinuationFrames(int streamId, long byteCount) throws IOException { in writeContinuationFrames()
485 int byteCount) throws IOException { in data()
492 void dataFrame(int streamId, byte flags, Buffer buffer, int byteCount) throws IOException { in dataFrame()
608 @Override public long read(Buffer sink, long byteCount) throws IOException { in read()
H A DFramedStream.java339 @Override public long read(Buffer sink, long byteCount) in read()
386 void receive(BufferedSource in, long byteCount) throws IOException { in receive()
489 @Override public void write(Buffer source, long byteCount) throws IOException { in write()
/aosp_15_r20/external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/framed/
H A DHttp2.java443 long byteCount = hpackBuffer.size(); in pushPromise() local
458 long byteCount = hpackBuffer.size(); in headers() local
469 private void writeContinuationFrames(int streamId, long byteCount) throws IOException { in writeContinuationFrames()
496 int byteCount) throws IOException { in data()
503 void dataFrame(int streamId, byte flags, Buffer buffer, int byteCount) throws IOException { in dataFrame()
621 @Override public long read(Buffer sink, long byteCount) throws IOException { in read()
/aosp_15_r20/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/
H A DBridgeBufferIterator.java48 public void skip(int byteCount) { in skip()
55 public void readByteArray(byte[] dst, int dstOffset, int byteCount) { in readByteArray()
56 assert dst.length >= dstOffset + byteCount; in readByteArray() local
/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowMemoryMappedFile.java89 public void skip(int byteCount) { in skip()
99 public void readByteArray(byte[] dst, int dstOffset, int byteCount) { in readByteArray()
100 System.arraycopy(buffer.array(), buffer.position(), dst, dstOffset, byteCount); in readByteArray() local
H A DShadowMemoryMappedFileS.java91 public void skip(int byteCount) { in skip()
101 public void readByteArray(byte[] dst, int dstOffset, int byteCount) { in readByteArray()
102 System.arraycopy(buffer.array(), buffer.position(), dst, dstOffset, byteCount); in readByteArray() local
/aosp_15_r20/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
H A DWebSocketWriter.java173 private void writeMessageFrameSynchronized(int formatOpcode, long byteCount, boolean isFirstFrame, in writeMessageFrameSynchronized()
213 private void writeMaskedSynchronized(BufferedSource source, long byteCount) throws IOException { in writeMaskedSynchronized()
232 @Override public void write(Buffer source, long byteCount) throws IOException { in write()
/aosp_15_r20/out/soong/.intermediates/external/okio/okio-lib/android_common_apex30/kotlin/
Dokio-lib.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__okio__android_common_apex30__okio-lib. ...
/aosp_15_r20/out/soong/.intermediates/external/okio/okio-lib/android_common_apex33/kotlin/
Dokio-lib.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__okio__android_common_apex33__okio-lib. ...
/aosp_15_r20/out/soong/.intermediates/external/okio/okio-lib/android_common/kotlin/
Dokio-lib.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__okio__android_common__okio-lib. ...
/aosp_15_r20/out/soong/.intermediates/external/okio/okio-lib/android_common_apex34/kotlin/
Dokio-lib.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__okio__android_common_apex34__okio-lib. ...
/aosp_15_r20/out/soong/.intermediates/external/okio/okio-lib/android_common_apex10000/kotlin/
Dokio-lib.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__okio__android_common_apex10000__okio-lib. ...
/aosp_15_r20/external/okio/okio/src/jvmMain/kotlin/okio/
H A DSegmentedByteString.kt54 forEachSegment { data, offset, byteCount -> in <lambda>() method
66 forEachSegment { data, offset, byteCount -> in <lambda>() method
90 forEachSegment { data, offset, byteCount -> in <lambda>() method
/aosp_15_r20/external/tensorflow/tensorflow/lite/swift/Sources/
H A DInterpreter.swift167 let byteCount = TfLiteTensorByteSize(cTensor) in input() variable
213 let byteCount = TfLiteTensorByteSize(cTensor) in output() variable
276 let byteCount = TfLiteTensorByteSize(cTensor) in copy() variable

12345678910>>...35