Home
last modified time | relevance | path

Searched refs:icount (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
DFileChannelImpl.java461 private long transferToDirectlyInternal(long position, int icount, in transferToDirectlyInternal() argument
479 n = transferTo0(fd, position, icount, targetFD); in transferToDirectlyInternal()
500 private long transferToDirectly(long position, int icount, in transferToDirectly() argument
537 return transferToDirectlyInternal(position, icount, in transferToDirectly()
544 return transferToDirectlyInternal(position, icount, target, targetFD); in transferToDirectly()
599 private long transferToArbitraryChannel(long position, int icount, in transferToArbitraryChannel() argument
604 int c = Math.min(icount, TRANSFER_SIZE); in transferToArbitraryChannel()
610 while (tw < icount) { in transferToArbitraryChannel()
611 bb.limit(Math.min((int)(icount - tw), TRANSFER_SIZE)); in transferToArbitraryChannel()
652 int icount = (int)Math.min(count, Integer.MAX_VALUE); in transferTo() local
[all …]