Searched defs:newFileSystem (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DMacOSXFileSystemProvider.java42 MacOSXFileSystem newFileSystem(String dir) { method in class:MacOSXFileSystemProvider
H A DBsdFileSystemProvider.java42 BsdFileSystem newFileSystem(String dir) { method in class:BsdFileSystemProvider
H A DLinuxFileSystemProvider.java43 LinuxFileSystem newFileSystem(String dir) { method in class:LinuxFileSystemProvider
H A DSolarisFileSystemProvider.java43 SolarisFileSystem newFileSystem(String dir) { method in class:SolarisFileSystemProvider
H A DUnixFileSystemProvider.java56 theFileSystem = newFileSystem(userDir);
62 abstract UnixFileSystem newFileSystem(String dir); method in class:UnixFileSystemProvider
85 public final FileSystem newFileSystem(URI uri, Map<String,?> env) { method in class:UnixFileSystemProvider
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFileSystems.java50 * newFileSystem} methods defined by this class, locates and loads all
196 * instance is created by the {@link #newFileSystem newFileSystem} method).
230 * dependent. If found, the provider's {@link FileSystemProvider#newFileSystem(URI,Map)
231 * newFileSystem(URI,Map)} method is invoked to construct the new file system.
244 * FileSystem fs = FileSystems.newFileSystem(URI.create("memory:///?name=logfs"), env);
269 public static FileSystem newFileSystem(URI uri, Map<String,?> env) method in class:FileSystems
272 return newFileSystem(uri, env, null);
279 * the same manner as the {@link #newFileSystem(URI,Map) newFileSystem(UR
314 public static FileSystem newFileSystem(URI uri, Map<String,?> env, ClassLoader loader) method in class:FileSystems
375 public static FileSystem newFileSystem(Path path, method in class:FileSystems
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/spi/
H A DFileSystemProvider.java63 * The {@link #newFileSystem newFileSystem} method may be used to create a file
68 * the {@code newFileSystem} method is invoked. In the case of the default
191 * method is invoked by the {@link FileSystems#newFileSystem(URI,Map)}
227 public abstract FileSystem newFileSystem(URI uri, Map<String,?> env) method in class:FileSystemProvider
234 * created by invoking the {@link #newFileSystem(URI,Map) newFileSystem(URI,Map)}
235 * method. File systems created the {@link #newFileSystem(Path,Map)
236 * newFileSystem(Path,Map)} method are not returned by this method.
248 * closed (and before a new instance is created by the {@link #newFileSystem
337 public FileSystem newFileSystem(Path path, Map<String,?> env) method in class:FileSystemProvider
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystemProvider.java77 public FileSystem newFileSystem(URI uri, Map<String,?> env) method in class:WindowsFileSystemProvider
/openjdk7/jdk/test/java/nio/file/spi/
H A DTestProvider.java46 public FileSystem newFileSystem(URI uri, Map<String,?> env) { method in class:TestProvider
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystemProvider.java104 public FileSystem newFileSystem(URI uri, Map<String, ?> env) method in class:ZipFileSystemProvider
131 public FileSystem newFileSystem(Path path, Map<String, ?> env) method in class:ZipFileSystemProvider
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java54 return provider.newFileSystem(uri, env);
178 public FileSystem newFileSystem(URI uri, Map<String,?> env) method in class:PassThroughFileSystem.PassThroughProvider

Completed in 54 milliseconds