Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/nio/file/
DDefaultSecureDirectoryStreamTest.java58 Path path_root; field in DefaultSecureDirectoryStreamTest
76 path_root = filesSetup.getPathInTestDir("dir"); in setup()
86 Files.createDirectory(path_root); in setup()
106 try (DirectoryStream<Path> directoryStream = Files.newDirectoryStream(path_root, in testIterator()
116 try (DirectoryStream<Path> directoryStream = Files.newDirectoryStream(path_root, in testIterator_calledTwice()
128 DirectoryStream<Path> directoryStream = Files.newDirectoryStream(path_root, in testIterator_afterClose()
145 Files.newDirectoryStream(path_root); in test_newDirectoryStream()
146 DirectoryStream<Path> ds_path_dir1 = ds_path_root.newDirectoryStream(path_root. in test_newDirectoryStream()
161 Files.newDirectoryStream(path_root)) { in test_newDirectoryStream_symbolicLink()
162 try (DirectoryStream<Path> ds_path_dir2 = ds_path_dir1.newDirectoryStream(path_root. in test_newDirectoryStream_symbolicLink()
[all …]
DFilesTest.java295 Path path_root = filesSetup.getPathInTestDir("dir"); in test_newDirectoryStream$Path$String() local
304 Files.createDirectory(path_root); in test_newDirectoryStream$Path$String()
319 try (DirectoryStream<Path> directoryStream = Files.newDirectoryStream(path_root, "*.java")) in test_newDirectoryStream$Path$String()
DDefaultFileSystemProviderTest.java738 Path path_root = filesSetup.getPathInTestDir("dir"); in test_newDirectoryStream$Path$Filter() local
747 Files.createDirectory(path_root); in test_newDirectoryStream$Path$Filter()
763 try (DirectoryStream<Path> directoryStream = provider.newDirectoryStream(path_root, in test_newDirectoryStream$Path$Filter()