Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/nio/ch/
DFileChannelImpl.java463 FileDescriptor targetFD) in transferToDirectlyInternal() argument
479 n = transferTo0(fd, position, icount, targetFD); in transferToDirectlyInternal()
507 FileDescriptor targetFD = null; in transferToDirectly()
511 targetFD = ((FileChannelImpl)target).fd; in transferToDirectly()
523 targetFD = ((SelChImpl)target).getFD(); in transferToDirectly()
526 if (targetFD == null) in transferToDirectly()
529 int targetFDVal = IOUtil.fdVal(targetFD); in transferToDirectly()
538 target, targetFD); in transferToDirectly()
544 return transferToDirectlyInternal(position, icount, target, targetFD); in transferToDirectly()