Home | History | Annotate | Download | only in xz

Lines Matching refs:read

52      * Calls {@link RandomAccessFile#read() randomAccessFile.read()}.
54 public int read() throws IOException {
55 return randomAccessFile.read();
59 * Calls {@link RandomAccessFile#read(byte[]) randomAccessFile.read(buf)}.
61 public int read(byte[] buf) throws IOException {
62 return randomAccessFile.read(buf);
67 * {@link RandomAccessFile#read(byte[],int,int)
68 * randomAccessFile.read(buf, off, len)}.
70 public int read(byte[] buf, int off, int len) throws IOException {
71 return randomAccessFile.read(buf, off, len);