Searched refs:mmapRO (Results 1 – 2 of 2) sorted by relevance
47 MemoryMappedFile.mmapRO("doesNotExist"); in testMmapRo_missingFile()58 MemoryMappedFile.mmapRO(file.getPath()); in testMmapRo_emptyFile()70 try (MemoryMappedFile memoryMappedFile = MemoryMappedFile.mmapRO(file.getPath())) { in testMmapRo()80 MemoryMappedFile memoryMappedFile = MemoryMappedFile.mmapRO(file.getPath()); in testMmapRo_close()102 MemoryMappedFile memoryMappedFile = MemoryMappedFile.mmapRO(file.getPath()); in testReadAfterCloseFails()123 MemoryMappedFile mappedFile = MemoryMappedFile.mmapRO(file.getPath()); in checkReadByte()151 MemoryMappedFile mappedFile = MemoryMappedFile.mmapRO(file.getPath()); in checkSeek()195 MemoryMappedFile mappedFile = MemoryMappedFile.mmapRO(file.getPath()); in checkSkip()237 MemoryMappedFile mappedFile = MemoryMappedFile.mmapRO(file.getPath()); in testReadShort_bigEndian()259 MemoryMappedFile mappedFile = MemoryMappedFile.mmapRO(file.getPath()); in testReadShort_littleEndian()[all …]
53 public static MemoryMappedFile mmapRO(String path) throws ErrnoException { in mmapRO() method in MemoryMappedFile