Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/nio/channels/
DAsynchronousFileChannelTest.java58 Path newFile = tempDir.resolve("newFile"); in testOpen_create() local
59 AsynchronousFileChannel channel = AsynchronousFileChannel.open(newFile, in testOpen_create()
70 Path newFile = tempDir.resolve("newFile"); in testOpen_existing() local
73 AsynchronousFileChannel channel = AsynchronousFileChannel.open(newFile, in testOpen_existing()
78 AsynchronousFileChannel.open(newFile, StandardOpenOption.CREATE_NEW); in testOpen_existing()
81 AsynchronousFileChannel.open(newFile, StandardOpenOption.CREATE_NEW, in testOpen_existing()
88 channel = AsynchronousFileChannel.open(newFile, StandardOpenOption.CREATE, in testOpen_existing()
/libcore/luni/src/test/java/libcore/java/nio/file/
DDefaultFileSystemProviderTest.java634 Path newFile = filesSetup.getPathInTestDir("newDir"); in test_copy() local
635 Files.createFile(newFile); in test_copy()
636 assertTrue(Files.exists(newFile)); in test_copy()