OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WRITEV
(Results
1 - 3
of
3
) sorted by null
/libcore/luni/src/main/java/java/nio/
IoVec.java
26
* and
writev
(2) calls.
29
enum Direction { READV,
WRITEV
};
81
return Libcore.os.
writev
(fd, ioBuffers, offsets, byteCounts);
95
b.position((direction == Direction.
WRITEV
? b.position() : 0) + byteCount);
FileChannelImpl.java
516
return transferIoVec(new IoVec(buffers, offset, length, IoVec.Direction.
WRITEV
));
/libcore/luni/src/test/java/libcore/java/nio/channels/
FileIOInterruptTest.java
319
testChannelWrite_exceptionWhenAlreadyClosed(ChannelWriter.Method.
WRITEV
);
350
testChannelWrite_exceptionWhenAlreadyInterrupted(ChannelWriter.Method.
WRITEV
);
387
testChannelWrite_exceptionOnCloseWhenBlocked(ChannelWriter.Method.
WRITEV
);
421
testChannelWrite_exceptionOnInterrupt(ChannelWriter.Method.
WRITEV
);
572
WRITEV
,
Completed in 217 milliseconds