/libcore/luni/src/main/java/java/util/zip/ |
D | Inflater.java | 230 public synchronized int inflate(byte[] buf, int off, int nbytes) in inflate() 260 private native synchronized int inflateImpl(byte[] buf, int off, in inflateImpl() 334 public synchronized void setDictionary(byte[] buf, int off, int nbytes) { in setDictionary() 347 private native synchronized void setDictionaryImpl(byte[] buf, int off, in setDictionaryImpl() 376 public synchronized void setInput(byte[] buf, int off, int nbytes) { in setInput() 405 synchronized int setFileInput(FileDescriptor fd, long off, int nbytes) { in setFileInput() 415 private native synchronized void setInputImpl(byte[] buf, int off, in setInputImpl() 419 private native synchronized int setFileInputImpl(FileDescriptor fd, long off, in setFileInputImpl()
|
D | Deflater.java | 199 public synchronized int deflate(byte[] buf, int off, int nbytes) { in deflate() 220 public synchronized int deflate(byte[] buf, int off, int nbytes, int flush) { in deflate() 228 byte[] buf, int off, int nbytes, int flush) { in deflateImpl() 241 private synchronized native int deflateImpl(byte[] buf, int off, in deflateImpl() 419 public synchronized void setDictionary(byte[] buf, int off, int nbytes) { in setDictionary() 432 private synchronized native void setDictionaryImpl(byte[] buf, int off, in setDictionaryImpl() 458 public synchronized void setInput(byte[] buf, int off, int nbytes) { in setInput() 480 private synchronized native void setInputImpl(byte[] buf, int off, in setInputImpl()
|
D | Adler32.java | 80 public void update(byte[] buf, int off, int nbytes) { in update() 90 private native long updateImpl(byte[] buf, int off, int nbytes, long adler1); in updateImpl()
|
D | CRC32.java | 78 public void update(byte[] buf, int off, int nbytes) { in update() 89 private native long updateImpl(byte[] buf, int off, int nbytes, long crc1); in updateImpl()
|
D | GZIPInputStream.java | 134 private long getLong(byte[] buffer, int off) { in getLong() 143 private int getShort(byte[] buffer, int off) { in getShort() 159 public int read(byte[] buffer, int off, int nbytes) throws IOException { in read()
|
D | Checksum.java | 49 public void update(byte[] buf, int off, int nbytes); in update()
|
D | CheckedOutputStream.java | 87 public void write(byte[] buf, int off, int nbytes) throws IOException { in write()
|
D | GZIPOutputStream.java | 88 public void write(byte[] buffer, int off, int nbytes) throws IOException { in write()
|
D | CheckedInputStream.java | 87 public int read(byte[] buf, int off, int nbytes) throws IOException { in read()
|
/libcore/sqlite-jdbc/src/main/java/SQLite/ |
D | Blob.java | 128 public int read(byte b[], int off, int len) throws IOException { in read() 221 public void write(byte[] b, int off, int len) throws IOException { in write() 291 native int write(byte[] b, int off, int pos, int len) throws IOException; in write() 302 native int read(byte[] b, int off, int pos, int len) throws IOException; in read()
|
/libcore/luni/src/main/native/ |
D | zip.h | 51 void setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, bool inflate) { in setDictionary() 72 void setInput(JNIEnv* env, jbyteArray buf, jint off, jint len) { in setInput()
|
D | java_util_zip_Inflater.cpp | 57 static void Inflater_setInputImpl(JNIEnv* env, jobject, jbyteArray buf, jint off, jint len, jlong h… in Inflater_setInputImpl() 61 static jint Inflater_setFileInputImpl(JNIEnv* env, jobject, jobject javaFileDescriptor, jlong off, … in Inflater_setFileInputImpl() 97 static jint Inflater_inflateImpl(JNIEnv* env, jobject recv, jbyteArray buf, int off, int len, jlong… in Inflater_inflateImpl() 143 static void Inflater_setDictionaryImpl(JNIEnv* env, jobject, jbyteArray dict, int off, int len, jlo… in Inflater_setDictionaryImpl()
|
D | java_util_zip_Adler32.cpp | 26 static jlong Adler32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong… in Adler32_updateImpl()
|
D | java_util_zip_CRC32.cpp | 26 static jlong CRC32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong c… in CRC32_updateImpl()
|
D | java_util_zip_Deflater.cpp | 29 static void Deflater_setDictionaryImpl(JNIEnv* env, jobject, jbyteArray dict, int off, int len, jlo… in Deflater_setDictionaryImpl() 71 static void Deflater_setInputImpl(JNIEnv* env, jobject, jbyteArray buf, jint off, jint len, jlong h… in Deflater_setInputImpl() 75 static jint Deflater_deflateImpl(JNIEnv* env, jobject recv, jbyteArray buf, int off, int len, jlong… in Deflater_deflateImpl()
|
/libcore/luni/src/main/java/java/nio/ |
D | ReadWriteDirectByteBuffer.java | 123 public ByteBuffer put(byte[] src, int off, int len) { in put() 160 ByteBuffer put(short[] src, int off, int len) { in put() 200 ByteBuffer put(int[] src, int off, int len) { in put() 240 ByteBuffer put(float[] src, int off, int len) { in put()
|
D | CharSequenceAdapter.java | 79 public final CharBuffer get(char[] dst, int off, int len) { in get() 134 public final CharBuffer put(char[] src, int off, int len) { in put()
|
D | IntArrayBuffer.java | 69 public final IntBuffer get(int[] dst, int off, int len) { in get()
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
D | SSLSocketOutputStream.java | 51 public void write(byte[] b, int off, int len) throws IOException { in write()
|
/libcore/luni/src/main/java/java/security/ |
D | DigestOutputStream.java | 104 public void write(byte[] b, int off, int len) throws IOException { in write()
|
D | DigestInputStream.java | 118 public int read(byte[] b, int off, int len) throws IOException { in read()
|
/libcore/luni/src/main/java/javax/crypto/ |
D | CipherOutputStream.java | 111 public void write(byte[] b, int off, int len) throws IOException { in write()
|
/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/ |
D | FtpURLInputStream.java | 45 public int read(byte[] buf, int off, int nbytes) throws IOException { in read()
|
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
D | CRC32Test.java | 149 int off = 2;// accessing the 2nd element of byteArray in test_update$BII() local
|
D | Adler32Test.java | 132 int off = 2;// accessing the 2nd element of byteArray in test_update$BII() local
|