| /libcore/ojluni/src/main/java/java/io/ |
| D | Bits.java | 39 static boolean getBoolean(byte[] b, int off) { in getBoolean() 43 static char getChar(byte[] b, int off) { in getChar() 48 static short getShort(byte[] b, int off) { in getShort() 53 static int getInt(byte[] b, int off) { in getInt() 60 static float getFloat(byte[] b, int off) { in getFloat() 64 static long getLong(byte[] b, int off) { in getLong() 75 static double getDouble(byte[] b, int off) { in getDouble() 84 static void putBoolean(byte[] b, int off, boolean val) { in putBoolean() 88 static void putChar(byte[] b, int off, char val) { in putChar() 93 static void putShort(byte[] b, int off, short val) { in putShort() [all …]
|
| D | FilterWriter.java | 82 public void write(char cbuf[], int off, int len) throws IOException { in write() 100 public void write(String str, int off, int len) throws IOException { in write()
|
| D | Writer.java | 119 public void write(char[] cbuf, int off, int len) throws IOException { in nullWriter() 131 public void write(String str, int off, int len) throws IOException { in nullWriter() 237 public abstract void write(char cbuf[], int off, int len) throws IOException; in write() 278 public void write(String str, int off, int len) throws IOException { in write()
|
| D | ObjectInputStream.java | 917 public int read(byte[] buf, int off, int len) throws IOException { in read() 1087 public void readFully(byte[] buf, int off, int len) throws IOException { in readFully() 2322 int off = getFieldOffset(name, Boolean.TYPE); in get() local 2327 int off = getFieldOffset(name, Byte.TYPE); in get() local 2332 int off = getFieldOffset(name, Character.TYPE); in get() local 2337 int off = getFieldOffset(name, Short.TYPE); in get() local 2342 int off = getFieldOffset(name, Integer.TYPE); in get() local 2347 int off = getFieldOffset(name, Float.TYPE); in get() local 2352 int off = getFieldOffset(name, Long.TYPE); in get() local 2357 int off = getFieldOffset(name, Double.TYPE); in get() local [all …]
|
| D | OutputStream.java | 87 public void write(byte b[], int off, int len) throws IOException { in nullOutputStream() 158 public void write(byte b[], int off, int len) throws IOException { in write()
|
| D | InputStream.java | 108 public int read(byte[] b, int off, int len) throws IOException { in nullInputStream() 124 public int readNBytes(byte[] b, int off, int len) in nullInputStream() 278 public int read(byte b[], int off, int len) throws IOException { in read() 501 public int readNBytes(byte[] b, int off, int len) throws IOException { in readNBytes()
|
| D | BufferedInputStream.java | 269 private int read1(byte[] b, int off, int len) throws IOException { in read1() 284 System.arraycopy(getBufIfOpen(), pos, b, off, cnt); in read1() local 326 public synchronized int read(byte b[], int off, int len) in read()
|
| /libcore/ojluni/src/main/java/java/util/zip/ |
| D | CRC32.java | 72 public void update(byte[] b, int off, int len) { in update() 148 private static int updateBytes(int crc, byte[] b, int off, int len) { in updateBytes() 154 private static native int updateBytes0(int crc, byte[] b, int off, int len); in updateBytes0() 156 private static void updateBytesCheck(byte[] b, int off, int len) { in updateBytesCheck() 174 int off, int len) { in updateByteBuffer() 181 int off, int len); in updateByteBuffer0()
|
| D | Inflater.java | 88 private int off, len; field in Inflater 141 public void setInput(byte[] b, int off, int len) { in setInput() 177 public void setDictionary(byte[] b, int off, int len) { in setDictionary() 186 setDictionary(zsRef.address(), b, off, len); in setDictionary() local 266 public int inflate(byte[] b, int off, int len) in inflate() 428 private native static void setDictionary(long addr, byte[] b, int off, in setDictionary() 430 private native int inflateBytes(long addr, byte[] b, int off, int len) in inflateBytes()
|
| D | Deflater.java | 87 private int off, len; field in Deflater 217 public void setInput(byte[] b, int off, int len) { in setInput() 253 public void setDictionary(byte[] b, int off, int len) { in setDictionary() 262 setDictionary(zsRef.address(), b, off, len); in setDictionary() local 383 public int deflate(byte[] b, int off, int len) { in deflate() 450 public int deflate(byte[] b, int off, int len, int flush) { in deflate() 589 private native static void setDictionary(long addr, byte[] b, int off, int len); in setDictionary() 590 private native int deflateBytes(long addr, byte[] b, int off, int len, in deflateBytes()
|
| D | Adler32.java | 73 public void update(byte[] b, int off, int len) { in update() 149 private static native int updateBytes(int adler, byte[] b, int off, in updateBytes() 153 int off, int len); in updateByteBuffer()
|
| D | ZipOutputStream.java | 317 public synchronized void write(byte[] b, int off, int len) in write() 365 long off = written; in finish() local 593 private void writeEND(long off, long len) throws IOException { in writeEND() 655 int off = 0; in getExtraLen() local 679 int off = 0; in writeExtra() local 748 private void writeBytes(byte[] b, int off, int len) throws IOException { in writeBytes()
|
| /libcore/ojluni/annotations/hiddenapi/java/util/zip/ |
| D | Inflater.java | 42 public void setInput(byte[] b, int off, int len) { in setInput() 50 public void setDictionary(byte[] b, int off, int len) { in setDictionary() 74 public int inflate(byte[] b, int off, int len) throws java.util.zip.DataFormatException { in inflate() 124 private static native void setDictionary(long addr, byte[] b, int off, int len); in setDictionary() 126 private native int inflateBytes(long addr, byte[] b, int off, int len) in inflateBytes() 164 private int off; field in Inflater
|
| D | Deflater.java | 45 public void setInput(byte[] b, int off, int len) { in setInput() 53 public void setDictionary(byte[] b, int off, int len) { in setDictionary() 81 public int deflate(byte[] b, int off, int len) { in deflate() 89 public int deflate(byte[] b, int off, int len, int flush) { in deflate() 131 private static native void setDictionary(long addr, byte[] b, int off, int len); in setDictionary() 133 private native int deflateBytes(long addr, byte[] b, int off, int len, int flush); in deflateBytes() 189 private int off; field in Deflater
|
| D | CRC32.java | 41 public void update(byte[] b, int off, int len) { in update() 64 private static native int updateBytes(int crc, byte[] b, int off, int len); in updateBytes() 66 private static native int updateByteBuffer(int adler, long addr, int off, int len); in updateByteBuffer()
|
| D | Adler32.java | 41 public void update(byte[] b, int off, int len) { in update() 64 private static native int updateBytes(int adler, byte[] b, int off, int len); in updateBytes() 66 private static native int updateByteBuffer(int adler, long addr, int off, int len); in updateByteBuffer()
|
| /libcore/ojluni/src/main/java/java/net/ |
| D | SocketOutputStream.java | 90 private native void socketWrite0(FileDescriptor fd, byte[] b, int off, in socketWrite0() 101 private void socketWrite(byte b[], int off, int len) throws IOException { in socketWrite() 155 public void write(byte b[], int off, int len) throws IOException { in write()
|
| D | SocketInputStream.java | 97 byte b[], int off, int len, in socketRead0() 115 byte b[], int off, int len, in socketRead() 142 public int read(byte b[], int off, int length) throws IOException { in read() 146 int read(byte b[], int off, int length, int timeout) throws IOException { in read()
|
| /libcore/ojluni/src/main/java/java/util/jar/ |
| D | JarOutputStream.java | 137 private static int get16(byte[] b, int off) { in get16() 145 private static void set16(byte[] b, int off, int value) { in set16()
|
| /libcore/luni/src/main/native/ |
| D | ZipUtilities.cpp | 45 void NativeZipStream::setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, in setDictionary() 67 void NativeZipStream::setInput(JNIEnv* env, jbyteArray buf, jint off, jint len) { in setInput()
|
| /libcore/ojluni/src/main/java/java/nio/ |
| D | HeapIntBuffer.java | 54 HeapIntBuffer(int[] buf, int off, int len) { // package-private in HeapIntBuffer() 58 HeapIntBuffer(int[] buf, int off, int len, boolean isReadOnly) { // package-private in HeapIntBuffer() 65 int off) { in HeapIntBuffer() 71 int off, boolean isReadOnly) { in HeapIntBuffer()
|
| D | HeapLongBuffer.java | 56 HeapLongBuffer(long[] buf, int off, int len) { // package-private in HeapLongBuffer() 60 HeapLongBuffer(long[] buf, int off, int len, boolean isReadOnly) { // package-private in HeapLongBuffer() 67 int off) { in HeapLongBuffer() 73 int off, boolean isReadOnly) { in HeapLongBuffer()
|
| D | HeapShortBuffer.java | 55 HeapShortBuffer(short[] buf, int off, int len) { // package-private in HeapShortBuffer() 59 HeapShortBuffer(short[] buf, int off, int len, boolean isReadOnly) { // package-private in HeapShortBuffer() 66 int off) { in HeapShortBuffer() 72 int off, boolean isReadOnly) { in HeapShortBuffer()
|
| D | HeapDoubleBuffer.java | 50 HeapDoubleBuffer(double[] buf, int off, int len) { // package-private in HeapDoubleBuffer() 56 int off) { in HeapDoubleBuffer() 65 HeapDoubleBuffer(double[] buf, int off, int len, boolean isReadOnly) { // package-private in HeapDoubleBuffer() 72 int off, boolean isReadOnly) { in HeapDoubleBuffer()
|
| D | HeapFloatBuffer.java | 55 HeapFloatBuffer(float[] buf, int off, int len) { // package-private in HeapFloatBuffer() 59 HeapFloatBuffer(float[] buf, int off, int len, boolean isReadOnly) { // package-private in HeapFloatBuffer() 66 int off) { in HeapFloatBuffer() 72 int off, boolean isReadOnly) { in HeapFloatBuffer()
|