Lines Matching defs:dst
135 public int read(ByteBuffer dst) throws IOException {
149 n = IOUtil.read(fd, dst, -1, nd);
671 public int read(ByteBuffer dst, long position) throws IOException {
672 if (dst == null)
681 return readInternal(dst, position);
684 return readInternal(dst, position);
688 private int readInternal(ByteBuffer dst, long position) throws IOException {
699 n = IOUtil.read(fd, dst, position, nd);
1159 // Transfers from src to dst, or returns -2 if kernel can't do that
1160 private native long transferTo0(int src, long position, long count, int dst);