/libcore/luni/src/test/java/libcore/java/nio/file/ |
D | FileSystemsTest.java | 79 FileSystems.newFileSystem(testPath.toUri(), stubEnv); in test_newFileSystem$URI$Map() 84 FileSystems.newFileSystem(null, stubEnv); in test_newFileSystem$URI$Map() 89 FileSystems.newFileSystem(testPath, null); in test_newFileSystem$URI$Map() 99 FileSystems.newFileSystem(testPath.toUri(), stubEnv, getClass().getClassLoader()); in test_newFileSystem$URI$Map$ClassLoader() 104 FileSystems.newFileSystem(null, stubEnv, in test_newFileSystem$URI$Map$ClassLoader() 110 FileSystems.newFileSystem(testPath.toUri(), null, in test_newFileSystem$URI$Map$ClassLoader() 116 FileSystems.newFileSystem(testPath.toUri(), stubEnv, null); in test_newFileSystem$URI$Map$ClassLoader() 134 FileSystem fs = FileSystems.newFileSystem(stubURI, stubEnv, fileSystemsClassLoader); in test_newFileSystem$URI$Map$ClassLoader_customClassLoader() 144 FileSystems.newFileSystem(testPath, Thread.currentThread().getContextClassLoader()); in test_newFileSystem$Path$ClassLoader() 149 FileSystems.newFileSystem(null, Thread.currentThread().getContextClassLoader()); in test_newFileSystem$Path$ClassLoader() [all …]
|
/libcore/ojluni/src/main/java/java/nio/file/ |
D | FileSystems.java | 273 public static FileSystem newFileSystem(URI uri, Map<String,?> env) in newFileSystem() method in FileSystems 276 return newFileSystem(uri, env, null); in newFileSystem() 318 public static FileSystem newFileSystem(URI uri, Map<String,?> env, ClassLoader loader) in newFileSystem() method in FileSystems 326 return provider.newFileSystem(uri, env); in newFileSystem() 336 return provider.newFileSystem(uri, env); in newFileSystem() 379 public static FileSystem newFileSystem(Path path, in newFileSystem() method in FileSystems 390 return provider.newFileSystem(path, env); in newFileSystem() 401 return provider.newFileSystem(path, env); in newFileSystem()
|
/libcore/luni/src/test/filesystems/src/mypackage/ |
D | MockFileSystemProvider.java | 45 public FileSystem newFileSystem(URI uri, Map<String, ?> env) throws IOException { in newFileSystem() method in MockFileSystemProvider 50 public FileSystem newFileSystem(Path path, Map<String, ?> env) throws IOException { in newFileSystem() method in MockFileSystemProvider
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | LinuxFileSystemProvider.java | 43 LinuxFileSystem newFileSystem(String dir) { in newFileSystem() method in LinuxFileSystemProvider
|
D | UnixFileSystemProvider.java | 57 theFileSystem = newFileSystem(userDir); in UnixFileSystemProvider() 67 abstract UnixFileSystem newFileSystem(String dir); in newFileSystem() method in UnixFileSystemProvider 91 public final FileSystem newFileSystem(URI uri, Map<String,?> env) { in newFileSystem() method in UnixFileSystemProvider
|
/libcore/ojluni/src/main/java/java/nio/file/spi/ |
D | FileSystemProvider.java | 227 public abstract FileSystem newFileSystem(URI uri, Map<String,?> env) in newFileSystem() method in FileSystemProvider 339 public FileSystem newFileSystem(Path path, Map<String,?> env) in newFileSystem() method in FileSystemProvider
|
/libcore/luni/src/test/java/libcore/java/nio/file/spi/ |
D | FileSystemProviderTest.java | 55 public FileSystem newFileSystem(URI uri, Map<String,?> env) throws IOException { in newFileSystem() method in FileSystemProviderTest.MockFileSystemProvider
|
/libcore/api/ |
D | current.txt | 7339 …method public static java.nio.file.FileSystem newFileSystem(java.net.URI, java.util.Map<java.lang.… 7340 …method public static java.nio.file.FileSystem newFileSystem(java.net.URI, java.util.Map<java.lang.… 7341 …method public static java.nio.file.FileSystem newFileSystem(java.nio.file.Path, ClassLoader) throw… 7803 …method public abstract java.nio.file.FileSystem newFileSystem(java.net.URI, java.util.Map<java.lan… 7804 …method public java.nio.file.FileSystem newFileSystem(java.nio.file.Path, java.util.Map<java.lang.S…
|