Home
last modified time | relevance | path

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

/system/timezone/debug_tools/host/main/java/
DZoneSplitter.java60 MappedByteBuffer mappedFile = createMappedByteBuffer(tzData); in execute() local
66 writeVersionFile(mappedFile, outputDir); in execute()
69 int index_offset = mappedFile.getInt(); in execute()
71 int data_offset = mappedFile.getInt(); in execute()
73 int final_offset = mappedFile.getInt(); in execute()
85 extractZicFiles(mappedFile, index_offset, data_offset, zicFilesDir); in execute()
96 MappedByteBuffer mappedFile; in createMappedByteBuffer() local
99 mappedFile = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0, file.length()); in createMappedByteBuffer()
101 mappedFile.load(); in createMappedByteBuffer()
102 return mappedFile; in createMappedByteBuffer()
[all …]