/aosp_15_r20/external/okhttp/okio/okio/src/main/java/okio/ |
H A D | RealBufferedSource.java | 44 @Override public long read(Buffer sink, long byteCount) throws IOException { in read() 63 @Override public void require(long byteCount) throws IOException { in require() 67 @Override public boolean request(long byteCount) throws IOException { in request() 86 @Override public ByteString readByteString(long byteCount) throws IOException { in readByteString() 96 @Override public byte[] readByteArray(long byteCount) throws IOException { in readByteArray() 121 @Override public int read(byte[] sink, int offset, int byteCount) throws IOException { in read() 133 @Override public void readFully(Buffer sink, long byteCount) throws IOException { in readFully() 167 @Override public String readUtf8(long byteCount) throws IOException { in readUtf8() 179 @Override public String readString(long byteCount, Charset charset) throws IOException { in readString() 287 @Override public void skip(long byteCount) throws IOException { in skip() [all …]
|
H A D | BufferedSource.java | 42 void require(long byteCount) throws IOException; in require() 49 boolean request(long byteCount) throws IOException; in request() 95 void skip(long byteCount) throws IOException; in skip() 101 ByteString readByteString(long byteCount) throws IOException; in readByteString() 107 byte[] readByteArray(long byteCount) throws IOException; in readByteArray() 125 int read(byte[] sink, int offset, int byteCount) throws IOException; in read() 132 void readFully(Buffer sink, long byteCount) throws IOException; in readFully() 148 String readUtf8(long byteCount) throws IOException; in readUtf8() 199 String readString(long byteCount, Charset charset) throws IOException; in readString()
|
H A D | RealBufferedSink.java | 42 @Override public void write(Buffer source, long byteCount) in write() 93 @Override public BufferedSink write(byte[] source, int offset, int byteCount) throws IOException { in write() 109 @Override public BufferedSink write(Source source, long byteCount) throws IOException { in write() 175 long byteCount = buffer.completeSegmentByteCount(); in emitCompleteSegments() local 182 long byteCount = buffer.size(); in emit() local 195 @Override public void write(byte[] data, int offset, int byteCount) throws IOException { in outputStream()
|
/aosp_15_r20/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/ |
H A D | RealBufferedSource.java | 45 @Override public long read(Buffer sink, long byteCount) throws IOException { in read() 64 @Override public void require(long byteCount) throws IOException { in require() 68 @Override public boolean request(long byteCount) throws IOException { in request() 87 @Override public ByteString readByteString(long byteCount) throws IOException { in readByteString() 97 @Override public byte[] readByteArray(long byteCount) throws IOException { in readByteArray() 122 @Override public int read(byte[] sink, int offset, int byteCount) throws IOException { in read() 134 @Override public void readFully(Buffer sink, long byteCount) throws IOException { in readFully() 168 @Override public String readUtf8(long byteCount) throws IOException { in readUtf8() 180 @Override public String readString(long byteCount, Charset charset) throws IOException { in readString() 288 @Override public void skip(long byteCount) throws IOException { in skip() [all …]
|
H A D | BufferedSource.java | 44 void require(long byteCount) throws IOException; in require() 51 boolean request(long byteCount) throws IOException; in request() 97 void skip(long byteCount) throws IOException; in skip() 103 ByteString readByteString(long byteCount) throws IOException; in readByteString() 109 byte[] readByteArray(long byteCount) throws IOException; in readByteArray() 127 int read(byte[] sink, int offset, int byteCount) throws IOException; in read() 134 void readFully(Buffer sink, long byteCount) throws IOException; in readFully() 150 String readUtf8(long byteCount) throws IOException; in readUtf8() 201 String readString(long byteCount, Charset charset) throws IOException; in readString()
|
H A D | RealBufferedSink.java | 43 @Override public void write(Buffer source, long byteCount) in write() 94 @Override public BufferedSink write(byte[] source, int offset, int byteCount) throws IOException { in write() 110 @Override public BufferedSink write(Source source, long byteCount) throws IOException { in write() 176 long byteCount = buffer.completeSegmentByteCount(); in emitCompleteSegments() local 183 long byteCount = buffer.size(); in emit() local 196 @Override public void write(byte[] data, int offset, int byteCount) throws IOException { in outputStream()
|
/aosp_15_r20/prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.9.0/ |
HD | okio-1.9.0.jar | META-INF/
META-INF/MANIFEST.MF
okio/
okio/AsyncTimeout$1. ... |
/aosp_15_r20/packages/apps/Car/DebuggingRestrictionController/libs/ |
D | okio-1.15.0.jar | META-INF/
META-INF/MANIFEST.MF
okio/
okio/AsyncTimeout$Watchdog. ... |
/aosp_15_r20/libcore/luni/src/main/java/libcore/io/ |
H A D | Linux.java | 164 public native void mincore(long address, long byteCount, byte[] vector) throws ErrnoException; in mincore() 167 public native void mlock(long address, long byteCount) throws ErrnoException; in mlock() 168 …public native long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long… in mmap() 169 public native void msync(long address, long byteCount, int flags) throws ErrnoException; in msync() 170 public native void munlock(long address, long byteCount) throws ErrnoException; in munlock() 171 public native void munmap(long address, long byteCount) throws ErrnoException; in munmap() 190 …public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thro… in pread() 194 …private native int preadBytes(FileDescriptor fd, Object buffer, int bufferOffset, int byteCount, l… in preadBytes() 208 …public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thr… in pwrite() 212 …e int pwriteBytes(FileDescriptor fd, Object buffer, int bufferOffset, int byteCount, long offset) … in pwriteBytes() [all …]
|
H A D | NioBufferIterator.java | 59 public void skip(int byteCount) { in skip() 69 public void readByteArray(byte[] bytes, int arrayOffset, int byteCount) { in readByteArray() 99 final int byteCount = Integer.BYTES * intCount; in readIntArray() local 109 final int byteCount = Long.BYTES * longCount; in readLongArray() local 124 private static void checkReadBounds(int position, int length, int byteCount) { in checkReadBounds()
|
H A D | ForwardingOs.java | 485 …public void mincore(long address, long byteCount, byte[] vector) throws ErrnoException { os.mincor… in mincore() 502 …public void mlock(long address, long byteCount) throws ErrnoException { os.mlock(address, byteCoun… in mlock() 507 …public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset… in mmap() 512 …public void msync(long address, long byteCount, int flags) throws ErrnoException { os.msync(addres… in msync() 517 …public void munlock(long address, long byteCount) throws ErrnoException { os.munlock(address, byte… in munlock() 522 …public void munmap(long address, long byteCount) throws ErrnoException { os.munmap(address, byteCo… in munmap() 593 …public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thro… in pread() 603 …public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thr… in pwrite() 613 …public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoExcept… in read() 639 …public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, Ine… in recvfrom() [all …]
|
H A D | Os.java | 423 public void mincore(long address, long byteCount, byte[] vector) throws ErrnoException; in mincore() 438 public void mlock(long address, long byteCount) throws ErrnoException; in mlock() 444 …public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset… in mmap() 449 public void msync(long address, long byteCount, int flags) throws ErrnoException; in msync() 454 public void munlock(long address, long byteCount) throws ErrnoException; in munlock() 460 public void munmap(long address, long byteCount) throws ErrnoException; in munmap() 497 …public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thro… in pread() 507 …public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thr… in pwrite() 518 …public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoExcept… in read() 543 …public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, Ine… in recvfrom() [all …]
|
H A D | BlockGuardOs.java | 299 …@Override public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long of… in pread() 311 …@Override public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long o… in pwrite() 323 …@Override public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws E… in read() 353 …@Override public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int … in recvfrom() 378 …sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) throws ErrnoE… in sendfile() 393 …@Override public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int fl… in sendto() 446 …@Override public int write(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws … in write() 476 @Override public void msync(long address, long byteCount, int flags) throws ErrnoException { in msync() 496 @Override public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, in sendto()
|
/aosp_15_r20/external/okio/okio/src/commonMain/kotlin/okio/internal/ |
H A D | SegmentedByteString.kt | 92 val byteCount = minOf(endIndex, segmentOffset + segmentSize) - pos in forEachSegment() constant 147 forEachSegment { data, offset, byteCount -> in commonGetSize() method 160 forEachSegment(offset, offset + byteCount) { data, offset, byteCount -> in commonWrite() method 182 forEachSegment(offset, offset + byteCount) { data, offset, byteCount -> in commonRangeEquals() method 202 forEachSegment(offset, offset + byteCount) { data, offset, byteCount -> in commonRangeEquals() method 219 forEachSegment(offset, offset + byteCount) { data, offset, byteCount -> in commonCopyInto() method 239 forEachSegment { data, offset, byteCount -> in commonHashCode() method
|
H A D | RealBufferedSink.kt | 105 var byteCount = byteCount in commonWrite() variable 171 val byteCount = buffer.completeSegmentByteCount() in commonEmitCompleteSegments() constant 178 val byteCount = buffer.size in commonEmit() constant
|
H A D | Buffer.kt | 245 var byteCount = byteCount in commonCopyTo() variable 423 var byteCount = byteCount in commonClear() variable 835 val byteCount = size in commonReadAll() constant 902 val byteCount: Int in commonReadUtf8CodePoint() constant 1125 var byteCount = byteCount in commonWrite() variable 1183 var byteCount = byteCount in commonWrite() variable 1276 var byteCount = byteCount in commonRead() variable
|
/aosp_15_r20/external/icu/android_icu4j/libcore_bridge/src/java/com/android/i18n/timezone/internal/ |
H A D | NioBufferIterator.java | 59 public void skip(int byteCount) { in skip() 69 public void readByteArray(byte[] bytes, int arrayOffset, int byteCount) { in readByteArray() 99 final int byteCount = Integer.BYTES * intCount; in readIntArray() local 109 final int byteCount = Long.BYTES * longCount; in readLongArray() local 124 private static void checkReadBounds(int position, int length, int byteCount) { in checkReadBounds()
|
/aosp_15_r20/libcore/luni/src/main/java/android/system/ |
H A D | Os.java | 454 …public static void mincore(long address, long byteCount, byte[] vector) throws ErrnoException { Li… in mincore() 469 …public static void mlock(long address, long byteCount) throws ErrnoException { Libcore.os.mlock(ad… in mlock() 474 …public static long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long… in mmap() 479 …public static void msync(long address, long byteCount, int flags) throws ErrnoException { Libcore.… in msync() 484 …public static void munlock(long address, long byteCount) throws ErrnoException { Libcore.os.munloc… in munlock() 489 …public static void munmap(long address, long byteCount) throws ErrnoException { Libcore.os.munmap(… in munmap() 551 …public static int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offse… in pread() 561 …public static int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offs… in pwrite() 571 …public static int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws Errn… in read() 614 …public static int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int fla… in recvfrom() [all …]
|
/aosp_15_r20/external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/internal/ws/ |
H A D | WebSocketWriterTest.java | 138 long byteCount = payload.completeSegmentByteCount(); in serverMessageLengthShort() local 141 sink.write(payload.clone(), byteCount); in serverMessageLengthShort() local 158 long byteCount = payload.completeSegmentByteCount(); in serverMessageLengthLong() local 161 sink.write(payload.clone(), byteCount); in serverMessageLengthLong() local 324 int byteCount = 16; in assertData() local
|
/aosp_15_r20/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
H A D | Http1xStream.java | 281 @Override public void write(Buffer source, long byteCount) throws IOException { in write() 283 checkOffsetAndCount(source.size(), 0, byteCount); in write() local 319 @Override public void write(Buffer source, long byteCount) throws IOException { in write() 388 @Override public long read(Buffer sink, long byteCount) throws IOException { in read() 429 @Override public long read(Buffer sink, long byteCount) throws IOException { in read() 483 @Override public long read(Buffer sink, long byteCount) in read()
|
/aosp_15_r20/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/ |
H A D | Http1xStream.java | 283 @Override public void write(Buffer source, long byteCount) throws IOException { in write() 285 checkOffsetAndCount(source.size(), 0, byteCount); in write() local 321 @Override public void write(Buffer source, long byteCount) throws IOException { in write() 390 @Override public long read(Buffer sink, long byteCount) throws IOException { in read() 431 @Override public long read(Buffer sink, long byteCount) throws IOException { in read() 485 @Override public long read(Buffer sink, long byteCount) in read()
|
/aosp_15_r20/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
H A D | NativeFrame.java | 177 int byteCount = rgbaBitmap.getByteCount(); in setBitmap() local 193 int byteCount = result.getByteCount(); in getBitmap() local 244 private native byte[] getNativeData(int byteCount); in getNativeData() 252 private native int[] getNativeInts(int byteCount); in getNativeInts() 254 private native float[] getNativeFloats(int byteCount); in getNativeFloats()
|
/aosp_15_r20/libcore/libart/src/main/java/java/lang/ |
H A D | StringFactory.java | 67 public static String newStringFromBytes(byte[] data, int offset, int byteCount) { in newStringFromBytes() 72 … public static native String newStringFromBytes(byte[] data, int high, int offset, int byteCount); in newStringFromBytes() 74 …public static String newStringFromBytes(byte[] data, int offset, int byteCount, String charsetName… in newStringFromBytes() 83 … public static String newStringFromBytes(byte[] data, int offset, int byteCount, Charset charset) { in newStringFromBytes() 135 public static native String newStringFromUtf8Bytes(byte[] data, int offset, int byteCount); in newStringFromUtf8Bytes()
|
/aosp_15_r20/external/okio/okio/src/jvmMain/kotlin/okio/ |
H A D | Buffer.kt | 153 var byteCount = byteCount in <lambda>() variable 192 var byteCount = byteCount in <lambda>() variable 232 var byteCount = byteCount in <lambda>() variable 420 val byteCount = source.remaining() in <lambda>() constant
|
/aosp_15_r20/frameworks/base/packages/PrintSpooler/jni/ |
H A D | com_android_printspooler_util_BitmapSerializeUtils.cpp | 29 static bool writeAllBytes(const int fd, void* buffer, const size_t byteCount) { in writeAllBytes() 45 static bool readAllBytes(const int fd, void* buffer, const size_t byteCount) { in readAllBytes() 118 size_t byteCount = readInfo.stride * readInfo.height; in readBitmapPixels() local 157 size_t byteCount = info.stride * info.height; in writeBitmapPixels() local
|