Searched refs:theFileSystem (Results 1 - 5 of 5) sorted by relevance

/openjdk10/jdk/test/java/nio/file/spi/
H A DTestProvider.java42 private final TestFileSystem theFileSystem; field in class:TestProvider
47 this.theFileSystem = new TestFileSystem(fs, this);
66 return theFileSystem;
72 return theFileSystem.wrap(path);
88 Path delegate = theFileSystem.unwrap(file);
98 Path delegate = theFileSystem.unwrap(file);
107 Path delegate = theFileSystem.unwrap(file);
113 Path delegate = theFileSystem.unwrap(file);
131 Path delegate = theFileSystem.unwrap(link);
133 return theFileSystem
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/jrtfs/
H A DJrtFileSystemProvider.java57 private volatile FileSystem theFileSystem; field in class:JrtFileSystemProvider
201 FileSystem fs = this.theFileSystem;
204 fs = this.theFileSystem;
207 this.theFileSystem = fs = new JrtFileSystem(this, null);
/openjdk10/jdk/test/jdk/internal/jrtfs/
H A DBasic.java66 private FileSystem theFileSystem; field in class:Basic
72 theFileSystem = FileSystems.getFileSystem(URI.create("jrt:/"));
103 return theDefault? theFileSystem : fs;
136 FileSystem theFileSystem = FileSystems.getFileSystem(URI.create("jrt:/"));
140 assertTrue(fs != theFileSystem);
/openjdk10/jdk/src/java.base/unix/classes/sun/nio/fs/
H A DUnixFileSystemProvider.java52 private final UnixFileSystem theFileSystem; field in class:UnixFileSystemProvider
56 theFileSystem = newFileSystem(userDir);
94 return theFileSystem;
99 return UnixUriUtils.fromUri(theFileSystem, uri);
/openjdk10/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsFileSystemProvider.java50 private final WindowsFileSystem theFileSystem; field in class:WindowsFileSystemProvider
53 theFileSystem = new WindowsFileSystem(this, System.getProperty(USER_DIR));
88 return theFileSystem;
93 return WindowsUriSupport.fromUri(theFileSystem, uri);

Completed in 188 milliseconds