OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:writeOnlyFileChannel
(Results
1 - 2
of
2
) sorted by null
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
FileChannelTest.java
83
private FileChannel
writeOnlyFileChannel
;
132
writeOnlyFileChannel
= new FileOutputStream(fileOfWriteOnlyFileChannel)
143
IoUtils.closeQuietly(
writeOnlyFileChannel
);
182
writeOnlyFileChannel
.write(writeBuffer);
183
writeOnlyFileChannel
.force(true);
195
writeOnlyFileChannel
.close();
197
writeOnlyFileChannel
.force(true);
203
writeOnlyFileChannel
.force(false);
223
assertEquals(0,
writeOnlyFileChannel
.position());
282
writeOnlyFileChannel
.write(writeBuffer)
[
all
...]
/libcore/luni/src/test/java/libcore/java/nio/channels/
OldFileChannelTest.java
63
private FileChannel
writeOnlyFileChannel
;
92
writeOnlyFileChannel
= new FileOutputStream(fileOfWriteOnlyFileChannel)
106
if (null !=
writeOnlyFileChannel
) {
108
writeOnlyFileChannel
.close();
149
writeOnlyFileChannel
.write(writeBuffer);
150
writeOnlyFileChannel
.force(true);
157
writeOnlyFileChannel
.write(writeBuffer);
158
writeOnlyFileChannel
.force(false);
209
writeOnlyFileChannel
.tryLock(0, -1, false);
216
writeOnlyFileChannel
.tryLock(-1, 0, false)
[
all
...]
Completed in 269 milliseconds