Searched refs:toRealPath (Results 1 - 20 of 20) sorted by relevance

/openjdk9/jdk/test/java/nio/file/Path/
H A DMisc.java50 // toRealPath method
93 * Exercise toRealPath method
100 * Test: totRealPath() will access same file as toRealPath(NOFOLLOW_LINKS)
102 assertTrue(Files.isSameFile(file.toRealPath(), file.toRealPath(NOFOLLOW_LINKS)));
105 * Test: toRealPath should fail if file does not exist
109 doesNotExist.toRealPath();
114 doesNotExist.toRealPath(NOFOLLOW_LINKS);
120 * Test: toRealPath() should resolve links
124 assertTrue(link.toRealPath()
[all...]
/openjdk9/hotspot/test/runtime/jni/CalleeSavedRegisters/
H A DFPRegs.java65 p = jvmLib.get().toRealPath();
/openjdk9/jdk/src/jdk.zipfs/share/classes/jdk/nio/zipfs/
H A DZipFileSystemProvider.java97 realPath = path.toRealPath();
116 realPath = path.toRealPath();
164 zipfs = filesystems.get(uriToPath(uri).toRealPath());
166 // ignore the ioe from toRealPath(), return FSNFE
321 zfpath = zfpath.toRealPath();
H A DZipPath.java154 public ZipPath toRealPath(LinkOption... options) throws IOException { method in class:ZipPath
/openjdk9/jdk/src/java.base/share/classes/java/nio/file/
H A DPath.java348 * @see #toRealPath
627 Path toRealPath(LinkOption... options) throws IOException; method in interface:Path
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DFSInfo.java74 return file.toRealPath();
H A DPathFileObject.java334 * {@link Path#toRealPath} real path.
424 return p.toRealPath(LinkOption.NOFOLLOW_LINKS).getFileName().toString().equals(sn);
H A DJavacFileManager.java627 // Note that toRealPath() returns the case-sensitive
632 path = f.toRealPath(LinkOption.NOFOLLOW_LINKS).toString();
H A DLocations.java2095 return p.toRealPath();
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/loader/
H A DClassLoaders.java262 return Paths.get(s).toRealPath().toFile().toURI().toURL();
/openjdk9/jdk/test/java/nio/file/Files/
H A DCheckPermissions.java589 // -- toRealPath --
592 file.toRealPath();
596 file.toRealPath(LinkOption.NOFOLLOW_LINKS);
600 Paths.get(".").toRealPath();
604 Paths.get(".").toRealPath(LinkOption.NOFOLLOW_LINKS);
H A DPassThroughFileSystem.java489 public Path toRealPath(LinkOption... options) throws IOException { method in class:PassThroughFileSystem.PassThroughPath
490 return wrap(delegate.toRealPath(options));
/openjdk9/jdk/test/java/nio/file/spi/
H A DTestProvider.java413 public Path toRealPath(LinkOption... options) throws IOException { method in class:TestProvider.TestPath
414 return fs.wrap(delegate.toRealPath(options));
/openjdk9/jdk/test/tools/jar/modularJar/
H A DBasic.java267 "-m", mrjarDir.resolve("META-INF/MANIFEST.MF").toRealPath().toString(),
318 "-m", mrjarDir.resolve("META-INF/MANIFEST.MF").toRealPath().toString(),
422 "-m", mrjarDir.resolve("META-INF/MANIFEST.MF").toRealPath().toString(),
730 "-m", mrjarDir.resolve("META-INF/MANIFEST.MF").toRealPath().toString(),
750 "-m", mrjarDir.resolve("META-INF/MANIFEST.MF").toRealPath().toString(),
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DDocletInvoker.java427 p = file.toRealPath();
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/jrtfs/
H A DJrtFileSystem.java445 JrtPath toRealPath(JrtPath path, LinkOption... options) method in class:JrtFileSystem
H A DJrtPath.java159 public final JrtPath toRealPath(LinkOption... options) throws IOException { method in class:JrtPath
160 return jrtfs.toRealPath(this, options);
/openjdk9/jdk/src/java.rmi/share/classes/sun/rmi/registry/
H A DRegistryImpl.java416 p = p.toRealPath();
/openjdk9/jdk/src/java.base/unix/classes/sun/nio/fs/
H A DUnixPath.java849 public Path toRealPath(LinkOption... options) throws IOException { method in class:UnixPath
/openjdk9/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsPath.java889 public WindowsPath toRealPath(LinkOption... options) throws IOException { method in class:WindowsPath

Completed in 142 milliseconds