Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/io/
DFileInputStreamTest.java250 File largeFile = File.createTempFile("FileInputStreamTest_testSkipOnLargeFiles", ""); in testSkipOnLargeFiles() local
255 final StructStatVfs statVfs = Os.statvfs(largeFile.getPath()); in testSkipOnLargeFiles()
261 allocateEmptyFile(largeFile, fileSize); in testSkipOnLargeFiles()
262 assertEquals(fileSize, largeFile.length()); in testSkipOnLargeFiles()
263 try (FileInputStream fis = new FileInputStream(largeFile)) { in testSkipOnLargeFiles()
270 assertTrue(largeFile.delete()); in testSkipOnLargeFiles()
/libcore/ojluni/src/test/java/util/zip/ZipFile/
DZip64SizeTest.java145 try (RandomAccessFile largeFile = new RandomAccessFile(LARGE_FILE, "rw"); in createFiles() argument
148 largeFile.setLength(LARGE_FILE_SIZE); in createFiles()