/libcore/ojluni/src/main/java/java/io/ |
H A D | FilterOutputStream.java | 102 * <code>byte</code> array starting at offset <code>off</code> to 115 * @param off the start offset in the data. 120 public void write(byte b[], int off, int len) throws IOException { argument 121 if ((off | len | (b.length - (len + off)) | (off + len)) < 0) 125 write(b[off + i]);
|
H A D | OutputStream.java | 80 * starting at offset <code>off</code> to this output stream. 81 * The general contract for <code>write(b, off, len)</code> is that 83 * output stream in order; element <code>b[off]</code> is the first 84 * byte written and <code>b[off+len-1]</code> is the last byte written 95 * If <code>off</code> is negative, or <code>len</code> is negative, or 96 * <code>off+len</code> is greater than the length of the array 100 * @param off the start offset in the data. 106 public void write(byte b[], int off, int len) throws IOException { argument 109 } else if ((off < 0) || (off > [all...] |
H A D | BufferedOutputStream.java | 102 * starting at offset <code>off</code> to this buffered output stream. 112 * @param off the start offset in the data. 116 public synchronized void write(byte b[], int off, int len) throws IOException { argument 122 out.write(b, off, len); 128 System.arraycopy(b, off, buf, count, len);
|
H A D | FilterInputStream.java | 116 * This method simply performs <code>in.read(b, off, len)</code> 120 * @param off the start offset in the destination array <code>b</code> 126 * @exception IndexOutOfBoundsException If <code>off</code> is negative, 128 * <code>b.length - off</code> 132 public int read(byte b[], int off, int len) throws IOException { argument 133 return in.read(b, off, len);
|
H A D | FilterReader.java | 73 public int read(char cbuf[], int off, int len) throws IOException { argument 74 return in.read(cbuf, off, len);
|
H A D | FilterWriter.java | 72 * @param off Offset from which to start reading characters 77 public void write(char cbuf[], int off, int len) throws IOException { argument 78 out.write(cbuf, off, len); 85 * @param off Offset from which to start reading characters 90 public void write(String str, int off, int len) throws IOException { argument 91 out.write(str, off, len);
|
H A D | InputStream.java | 119 * <p> The first byte read is stored into element <code>b[off]</code>, the 120 * next one into <code>b[off+1]</code>, and so on. The number of bytes read 123 * <code>b[off]</code> through <code>b[off+</code><i>k</i><code>-1]</code>, 124 * leaving elements <code>b[off+</code><i>k</i><code>]</code> through 125 * <code>b[off+len-1]</code> unaffected. 128 * <code>b[off]</code> and elements <code>b[off+len]</code> through 131 * <p> The <code>read(b,</code> <code>off,</code> <code>len)</code> method 135 * the <code>read(b,</code> <code>off,</cod 161 read(byte b[], int off, int len) argument [all...] |
H A D | ObjectInput.java | 76 * @param off the start offset of the data 82 public int read(byte b[], int off, int len) throws IOException; argument
|
H A D | ObjectOutput.java | 70 * @param off the start offset in the data 74 public void write(byte b[], int off, int len) throws IOException; argument
|
H A D | PipedOutputStream.java | 127 * starting at offset <code>off</code> to this piped output stream. 132 * @param off the start offset in the data. 138 public void write(byte b[], int off, int len) throws IOException { argument 143 } else if ((off < 0) || (off > b.length) || (len < 0) || 144 ((off + len) > b.length) || ((off + len) < 0)) { 149 sink.receive(b, off, len);
|
H A D | PipedWriter.java | 129 * starting at offset <code>off</code> to this piped output stream. 137 * @param off the start offset in the data. 144 public void write(char cbuf[], int off, int len) throws IOException { argument 147 } else if ((off | len | (off + len) | (cbuf.length - (off + len))) < 0) { 150 sink.receive(cbuf, off, len);
|
H A D | SequenceInputStream.java | 187 * @param off the start offset in array <code>b</code> 192 * @exception IndexOutOfBoundsException If <code>off</code> is negative, 194 * <code>b.length - off</code> 197 public int read(byte b[], int off, int len) throws IOException { argument 202 } else if (off < 0 || len < 0 || len > b.length - off) { 208 int n = in.read(b, off, len); 211 return read(b, off, len);
|
H A D | StringBufferInputStream.java | 105 * @param off the start offset of the data. 111 public synchronized int read(byte b[], int off, int len) { argument 114 } else if ((off < 0) || (off > b.length) || (len < 0) || 115 ((off + len) > b.length) || ((off + len) < 0)) { 130 b[off++] = (byte)s.charAt(pos++);
|
/libcore/ojluni/src/main/java/java/util/zip/ |
H A D | Checksum.java | 45 * @param off the start offset of the data 48 public void update(byte[] b, int off, int len); argument
|
H A D | Adler32.java | 62 public void update(byte[] b, int off, int len) { argument 66 if (off < 0 || len < 0 || off > b.length - len) { 69 adler = updateBytes(adler, b, off, len); 137 private native static int updateBytes(int adler, byte[] b, int off, argument 140 int off, int len); 139 updateByteBuffer(int adler, long addr, int off, int len) argument
|
H A D | CRC32.java | 58 public void update(byte[] b, int off, int len) { argument 62 if (off < 0 || len < 0 || off > b.length - len) { 65 crc = updateBytes(crc, b, off, len); 92 private native static int updateBytes(int crc, byte[] b, int off, int len); argument
|
H A D | CheckedInputStream.java | 71 * @param off the start offset in the destination array <code>b</code> 76 * @exception IndexOutOfBoundsException If <code>off</code> is negative, 78 * <code>buf.length - off</code> 81 public int read(byte[] buf, int off, int len) throws IOException { argument 82 len = in.read(buf, off, len); 84 cksum.update(buf, off, len);
|
H A D | CheckedOutputStream.java | 68 * @param off the start offset of the data 72 public void write(byte[] b, int off, int len) throws IOException { argument 73 out.write(b, off, len); 74 cksum.update(b, off, len);
|
/libcore/ojluni/src/main/java/sun/nio/cs/ |
H A D | ArrayDecoder.java | 34 int decode(byte[] src, int off, int len, char[] dst); argument
|
H A D | ArrayEncoder.java | 34 int encode(char[] src, int off, int len, byte[] dst); argument
|
/libcore/ojluni/src/main/java/java/security/ |
H A D | DigestInputStream.java | 44 * <p>It is possible to turn this stream on or off (see 47 * results in an update on the message digest. But when it is off, 68 /* Are we on or off? */ 135 * <code>b</code>, starting at offset <code>off</code>. This method 144 * @param off the starting offset into <code>b</code> of where the 148 * stream into b, starting at offset <code>off</code>. 160 public int read(byte[] b, int off, int len) throws IOException { argument 161 int result = in.read(b, off, len); 163 digest.update(b, off, result); 169 * Turns the digest function on or off [all...] |
H A D | DigestOutputStream.java | 44 * <p>It is possible to turn this stream on or off (see 47 * an update on the message digest. But when it is off, the message 134 * @param off the offset into <code>b</code> of the first byte to 138 * from <code>b</code>, starting at offset <code>off</code>. 144 public void write(byte[] b, int off, int len) throws IOException { argument 146 digest.update(b, off, len); 148 out.write(b, off, len); 152 * Turns the digest function on or off. The default is on. When 154 * update on the message digest. But when it is off, the message 158 * off [all...] |
/libcore/ojluni/src/main/java/javax/crypto/ |
H A D | CipherOutputStream.java | 146 * starting at offset <code>off</code> to this output stream. 149 * @param off the start offset in the data. 154 public void write(byte b[], int off, int len) throws IOException { argument 155 obuffer = cipher.update(b, off, len);
|
/libcore/ojluni/src/main/java/sun/net/ |
H A D | TelnetInputStream.java | 133 * Read into a byte array at offset <i>off</i> for length <i>length</i> 136 public int read(byte bytes[], int off, int length) throws IOException { argument 138 return super.read(bytes, off, length); 141 int offStart = off; 147 bytes[off++] = (byte)c; 149 return (off > offStart) ? off - offStart : -1;
|
H A D | TelnetOutputStream.java | 127 * Write the bytes at offset <i>off</i> in buffer <i>bytes</i> for 130 public void write(byte bytes[], int off, int length) throws IOException { argument 132 super.write(bytes, off, length); 137 write(bytes[off++]);
|