Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/native/
DFileChannelImpl.c240 struct sf_parms sf_iobuf; in FileChannelImpl_transferTo0() local
249 memset(&sf_iobuf, 0, sizeof(sf_iobuf)); in FileChannelImpl_transferTo0()
250 sf_iobuf.file_descriptor = srcFD; in FileChannelImpl_transferTo0()
251 sf_iobuf.file_offset = (off_t)position; in FileChannelImpl_transferTo0()
252 sf_iobuf.file_bytes = count; in FileChannelImpl_transferTo0()
254 result = send_file(&dstFD, &sf_iobuf, SF_SYNC_CACHE); in FileChannelImpl_transferTo0()
273 if (sf_iobuf.bytes_sent > 0) in FileChannelImpl_transferTo0()
274 return (jlong)sf_iobuf.bytes_sent; in FileChannelImpl_transferTo0()