/libcore/ojluni/src/main/java/java/io/ |
D | PushbackReader.java | 107 public int read(char cbuf[], int off, int len) throws IOException { in read() 175 public void unread(char cbuf[], int off, int len) throws IOException { in unread() 196 public void unread(char cbuf[]) throws IOException { in unread()
|
D | Reader.java | 97 public int read(char[] cbuf, int off, int len) throws IOException { in nullReader() 188 char[] cbuf = new char[len]; in read() local 228 public int read(char cbuf[]) throws IOException { in read() 249 public abstract int read(char cbuf[], int off, int len) throws IOException; in read()
|
D | Writer.java | 119 public void write(char[] cbuf, int off, int len) throws IOException { in nullWriter() 212 public void write(char cbuf[]) throws IOException { in write() 237 public abstract void write(char cbuf[], int off, int len) throws IOException; in write() 280 char cbuf[]; in write() local
|
D | FilterWriter.java | 82 public void write(char cbuf[], int off, int len) throws IOException { in write()
|
D | PipedWriter.java | 150 public void write(char cbuf[], int off, int len) throws IOException { in write()
|
D | FilterReader.java | 74 public int read(char cbuf[], int off, int len) throws IOException { in read()
|
D | BufferedReader.java | 213 private int read1(char[] cbuf, int off, int len) throws IOException { in read1() 288 public int read(char cbuf[], int off, int len) throws IOException { in read()
|
D | InputStreamReader.java | 176 public int read(char[] cbuf, int off, int len) throws IOException { in read()
|
D | StringReader.java | 89 public int read(char cbuf[], int off, int len) throws IOException { in read()
|
D | StringWriter.java | 92 public void write(char cbuf[], int off, int len) { in write()
|
D | CharArrayReader.java | 131 public int read(char[] cbuf, int off, int len) throws IOException { in read()
|
D | OutputStreamWriter.java | 204 public void write(char cbuf[], int off, int len) throws IOException { in write()
|
D | LineNumberReader.java | 166 public int read(char cbuf[], int off, int len) throws IOException { in read()
|
D | BufferedWriter.java | 169 public void write(char cbuf[], int off, int len) throws IOException { in write()
|
D | PipedReader.java | 297 public synchronized int read(char cbuf[], int off, int len) throws IOException { in read()
|
D | Console.java | 483 public int read(char cbuf[], int offset, int length) in read()
|
D | ObjectOutputStream.java | 1826 private final char[] cbuf = new char[CHAR_BUF_SIZE]; field in ObjectOutputStream.BlockDataOutputStream
|
D | ObjectInputStream.java | 2753 private final char[] cbuf = new char[CHAR_BUF_SIZE]; field in ObjectInputStream.BlockDataInputStream
|
/libcore/ojluni/src/main/java/sun/nio/cs/ |
D | StreamEncoder.java | 111 char cbuf[] = new char[1]; in write() local 116 public void write(char cbuf[], int off, int len) throws IOException { in write() 145 char cbuf[] = new char[len]; in write() local 274 void implWrite(char[] cbuf, int off, int len) in implWrite()
|
D | StreamDecoder.java | 147 public int read(char cbuf[], int offset, int length) throws IOException { in read() 310 int implRead(char[] cbuf, int off, int end) throws IOException { in implRead()
|
/libcore/ojluni/annotations/hiddenapi/java/io/ |
D | Console.java | 132 public int read(char[] cbuf, int offset, int length) throws java.io.IOException { in read()
|
D | ObjectOutputStream.java | 470 private final char[] cbuf; field in ObjectOutputStream.BlockDataOutputStream
|
D | ObjectInputStream.java | 534 private final char[] cbuf; field in ObjectInputStream.BlockDataInputStream
|
/libcore/ojluni/src/test/java/io/Reader/ |
D | TransferTo.java | 233 public int read(char[] cbuf, int off, int len) throws IOException { in input()
|