HomeSort by relevance Sort by last modified time
    Searched refs:TRANSFER_SIZE (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/main/java/java/nio/channels/
Channels.java 214 private static final int TRANSFER_SIZE = 8192;
230 TRANSFER_SIZE);
283 private static final int TRANSFER_SIZE = 8192;
298 TRANSFER_SIZE);
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileChannelImpl.java 532 int c = Math.min(icount, TRANSFER_SIZE);
539 bb.limit(Math.min((int)(icount - tw), TRANSFER_SIZE));
635 private static final int TRANSFER_SIZE = 8192;
642 int c = (int)Math.min(count, TRANSFER_SIZE);
649 bb.limit((int)Math.min((count - tw), (long)TRANSFER_SIZE));
    [all...]

Completed in 71 milliseconds