HomeSort by relevance Sort by last modified time
    Searched refs:checkOffsetAndCount (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/conscrypt/src/main/java/org/conscrypt/util/
Arrays.java 32 public static final void checkOffsetAndCount(int arrayLength, int offset, int count) {
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
FakeInputStream.java 45 Arrays.checkOffsetAndCount(buffer.length, offset, length);
  /libcore/luni/src/main/java/java/io/
OutputStream.java 104 Arrays.checkOffsetAndCount(buffer.length, offset, count);
FilterOutputStream.java 110 Arrays.checkOffsetAndCount(buffer.length, offset, length);
InputStream.java 177 Arrays.checkOffsetAndCount(buffer.length, byteOffset, byteCount);
PushbackInputStream.java 170 Arrays.checkOffsetAndCount(buffer.length, byteOffset, byteCount);
276 Arrays.checkOffsetAndCount(buffer.length, offset, length);
PushbackReader.java 175 Arrays.checkOffsetAndCount(buffer.length, offset, count);
299 Arrays.checkOffsetAndCount(buffer.length, offset, length);
BufferedOutputStream.java 135 Arrays.checkOffsetAndCount(buffer.length, offset, length);
ByteArrayInputStream.java 145 Arrays.checkOffsetAndCount(buffer.length, byteOffset, byteCount);
  /libcore/luni/src/main/java/java/util/zip/
Adler32.java 73 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
CRC32.java 74 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
Deflater.java 237 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
382 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
402 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
Inflater.java 227 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
293 Arrays.checkOffsetAndCount(dictionary.length, offset, byteCount);
313 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RetryableSink.java 26 import static com.squareup.okhttp.internal.Util.checkOffsetAndCount;
57 checkOffsetAndCount(source.size(), 0, byteCount);
  /external/okhttp/okio/src/main/java/okio/
Util.java 27 public static void checkOffsetAndCount(long arrayLength, long offset, long count) {
Okio.java 22 import static okio.Util.checkOffsetAndCount;
39 checkOffsetAndCount(source.size, offset, byteCount);
65 checkOffsetAndCount(source.size, 0, byteCount);
DeflaterSink.java 21 import static okio.Util.checkOffsetAndCount;
49 checkOffsetAndCount(source.size, 0, byteCount);
  /libcore/luni/src/main/java/javax/crypto/spec/
GCMParameterSpec.java 76 Arrays.checkOffsetAndCount(iv.length, offset, byteCount);
IvParameterSpec.java 67 Arrays.checkOffsetAndCount(iv.length, offset, byteCount);
  /libcore/luni/src/main/java/java/nio/
DoubleBuffer.java 88 Arrays.checkOffsetAndCount(array.length, start, doubleCount);
268 Arrays.checkOffsetAndCount(dst.length, dstOffset, doubleCount);
411 Arrays.checkOffsetAndCount(src.length, srcOffset, doubleCount);
FloatBuffer.java 89 Arrays.checkOffsetAndCount(array.length, start, floatCount);
269 Arrays.checkOffsetAndCount(dst.length, dstOffset, floatCount);
410 Arrays.checkOffsetAndCount(src.length, srcOffset, floatCount);
IntBuffer.java 85 Arrays.checkOffsetAndCount(array.length, start, intCount);
255 Arrays.checkOffsetAndCount(dst.length, dstOffset, intCount);
399 Arrays.checkOffsetAndCount(src.length, srcOffset, intCount);
LongBuffer.java 87 Arrays.checkOffsetAndCount(array.length, start, longCount);
257 Arrays.checkOffsetAndCount(dst.length, dstOffset, longCount);
400 Arrays.checkOffsetAndCount(src.length, srcOffset, longCount);
ShortBuffer.java 87 Arrays.checkOffsetAndCount(array.length, start, shortCount);
258 Arrays.checkOffsetAndCount(dst.length, dstOffset, shortCount);
399 Arrays.checkOffsetAndCount(src.length, srcOffset, shortCount);
  /frameworks/base/core/java/android/content/pm/
LimitedLengthInputStream.java 74 Arrays.checkOffsetAndCount(arrayLength, offset, byteCount);

Completed in 433 milliseconds

1 2 3