Home
last modified time | relevance | path

Searched defs:cbuf (Results 1 – 23 of 23) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
DPushbackReader.java107 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()
DReader.java97 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()
DWriter.java119 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
DFilterWriter.java82 public void write(char cbuf[], int off, int len) throws IOException { in write()
DPipedWriter.java150 public void write(char cbuf[], int off, int len) throws IOException { in write()
DFilterReader.java74 public int read(char cbuf[], int off, int len) throws IOException { in read()
DBufferedReader.java213 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()
DInputStreamReader.java179 public int read(char cbuf[], int offset, int length) throws IOException { in read()
DStringReader.java89 public int read(char cbuf[], int off, int len) throws IOException { in read()
DOutputStreamWriter.java206 public void write(char cbuf[], int off, int len) throws IOException { in write()
DStringWriter.java92 public void write(char cbuf[], int off, int len) { in write()
DLineNumberReader.java166 public int read(char cbuf[], int off, int len) throws IOException { in read()
DBufferedWriter.java169 public void write(char cbuf[], int off, int len) throws IOException { in write()
DPipedReader.java297 public synchronized int read(char cbuf[], int off, int len) throws IOException { in read()
DConsole.java422 public int read(char cbuf[], int offset, int length) in read()
DObjectOutputStream.java1810 private final char[] cbuf = new char[CHAR_BUF_SIZE]; field in ObjectOutputStream.BlockDataOutputStream
DObjectInputStream.java2559 private final char[] cbuf = new char[CHAR_BUF_SIZE]; field in ObjectInputStream.BlockDataInputStream
/libcore/ojluni/src/main/java/sun/nio/cs/
DStreamEncoder.java111 char cbuf[] = new char[1]; in write() local
116 public void write(char cbuf[], int off, int len) throws IOException { in write()
133 char cbuf[] = new char[len]; in write() local
262 void implWrite(char cbuf[], int off, int len) in implWrite()
DStreamDecoder.java147 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/
DConsole.java132 public int read(char[] cbuf, int offset, int length) throws java.io.IOException { in read()
DObjectOutputStream.java470 private final char[] cbuf; field in ObjectOutputStream.BlockDataOutputStream
DObjectInputStream.java534 private final char[] cbuf; field in ObjectInputStream.BlockDataInputStream
/libcore/ojluni/src/test/java/io/Reader/
DTransferTo.java233 public int read(char[] cbuf, int off, int len) throws IOException { in input()