Home | History | Annotate | Download | only in ch

Lines Matching refs:icount

443     private long transferToDirectlyInternal(long position, int icount,
460 n = transferTo0(fd, position, icount, targetFD);
481 private long transferToDirectly(long position, int icount,
518 return transferToDirectlyInternal(position, icount,
525 return transferToDirectlyInternal(position, icount, target, targetFD);
580 private long transferToArbitraryChannel(long position, int icount,
585 int c = Math.min(icount, TRANSFER_SIZE);
591 while (tw < icount) {
592 bb.limit(Math.min((int)(icount - tw), TRANSFER_SIZE));
633 int icount = (int)Math.min(count, Integer.MAX_VALUE);
634 if ((sz - position) < icount)
635 icount = (int)(sz - position);
640 if ((n = transferToDirectly(position, icount, target)) >= 0)
644 if ((n = transferToTrustedChannel(position, icount, target)) >= 0)
648 return transferToArbitraryChannel(position, icount, target);