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.java60 Path newFile = tempDir.resolve("newFile"); in testOpen_create() local
61 AsynchronousFileChannel channel = AsynchronousFileChannel.open(newFile, in testOpen_create()
72 Path newFile = tempDir.resolve("newFile"); in testOpen_existing() local
75 AsynchronousFileChannel channel = AsynchronousFileChannel.open(newFile, in testOpen_existing()
80 AsynchronousFileChannel.open(newFile, StandardOpenOption.CREATE_NEW); in testOpen_existing()
83 AsynchronousFileChannel.open(newFile, StandardOpenOption.CREATE_NEW, in testOpen_existing()
90 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()