Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/libcore/util/
DZoneInfoDB.java124 MemoryMappedFile mappedFile = null; in readIndex() local
126 mappedFile = MemoryMappedFile.mmapRO(INDEX_FILE_NAME); in readIndex()
127 readIndex(mappedFile); in readIndex()
131 IoUtils.closeQuietly(mappedFile); in readIndex()
135 private static void readIndex(MemoryMappedFile mappedFile) throws ErrnoException, IOException { in readIndex() argument
136 BufferIterator it = mappedFile.bigEndianIterator(); in readIndex()
144 int numEntries = (int) mappedFile.size() / (SIZEOF_TZNAME + 3*SIZEOF_TZINT); in readIndex()