OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:randomFile
(Results
1 - 2
of
2
) sorted by null
/cts/suite/cts/deviceTests/filesystemperf/src/com/android/cts/filesystemperf/
FileUtil.java
122
final RandomAccessFile
randomFile
= new RandomAccessFile(file, "rwd"); // force O_SYNC
124
randomFile
.seek(
randomFile
.length());
126
randomFile
.seek(0L);
128
randomFile
.write(data);
129
randomFile
.close();
287
final RandomAccessFile
randomFile
= new RandomAccessFile(file, "rw"); // do not need O_SYNC
298
randomFile
.seek(readOffsets[j]);
299
randomFile
.read(data);
303
randomFile
.close()
[
all
...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
MappedByteBufferTest.java
146
RandomAccessFile
randomFile
= new RandomAccessFile(tmpFile, "rw");
147
FileChannel fileChannelReadWrite =
randomFile
.getChannel();
179
RandomAccessFile
randomFile
= new RandomAccessFile(tmpFile, "rw");
180
FileChannel fileChannelReadWrite =
randomFile
.getChannel();
Completed in 91 milliseconds