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

/openjdk10/jdk/src/java.base/share/classes/jdk/internal/jrtfs/
H A DJrtFileStore.java25 package jdk.internal.jrtfs;
40 * It is used internally in the JDK to implement jimage/jrtfs access,
41 * but also compiled and delivered as part of the jrtfs.jar to support access
46 protected final FileSystem jrtfs; field in class:JrtFileStore
49 this.jrtfs = jrtPath.getFileSystem();
54 return jrtfs.toString() + "/";
59 return "jrtfs";
64 return jrtfs.isReadOnly();
H A DJrtPath.java25 package jdk.internal.jrtfs;
54 * It is used internally in the JDK to implement jimage/jrtfs access,
55 * but also compiled and delivered as part of the jrtfs.jar to support access
60 final JrtFileSystem jrtfs; field in class:JrtPath
64 JrtPath(JrtFileSystem jrtfs, String path) { argument
65 this.jrtfs = jrtfs;
70 JrtPath(JrtFileSystem jrtfs, String path, boolean normalized) { argument
71 this.jrtfs = jrtfs;
[all...]
H A DJrtDirectoryStream.java25 package jdk.internal.jrtfs;
42 * It is used internally in the JDK to implement jimage/jrtfs access,
43 * but also compiled and delivered as part of the jrtfs.jar to support access
58 if (!dir.jrtfs.isDirectory(dir, true)) { // sanity check
71 itr = dir.jrtfs.iteratorOf(dir, filter);
H A Djrtfsviewer.js31 * It is used internally in the JDK to implement jimage/jrtfs access,
32 * but also compiled and delivered as part of the jrtfs.jar to support access
98 cls = Java.type("jdk.internal.jrtfs.JrtFileSystem").class;
110 var jrtfs = getJrtFileSystem();
111 var root = jrtfs.getPath('/');
H A DJrtFileSystemProvider.java25 package jdk.internal.jrtfs;
51 * It is used internally in the JDK to implement jimage/jrtfs access,
52 * but also compiled and delivered as part of the jrtfs.jar to support access
116 Path jrtfs = FileSystems.getDefault().getPath(targetHome, "lib", JRT_FS_JAR);
117 if (Files.notExists(jrtfs)) {
118 throw new IOException(jrtfs.toString() + " not exist");
122 ClassLoader cl = newJrtFsLoader(jrtfs);
158 private static URLClassLoader newJrtFsLoader(Path jrtfs) { argument
161 url = jrtfs.toUri().toURL();
H A DJrtFileAttributes.java25 package jdk.internal.jrtfs;
37 * It is used internally in the JDK to implement jimage/jrtfs access,
38 * but also compiled and delivered as part of the jrtfs.jar to support access
95 ///////// jrtfs specific attributes ///////////
H A DJrtUtils.java26 package jdk.internal.jrtfs;
33 * It is used internally in the JDK to implement jimage/jrtfs access,
34 * but also compiled and delivered as part of the jrtfs.jar to support access
H A DSystemImage.java25 package jdk.internal.jrtfs;
46 * It is used internally in the JDK to implement jimage/jrtfs access,
47 * but also compiled and delivered as part of the jrtfs.jar to support access
H A DJrtFileAttributeView.java25 package jdk.internal.jrtfs;
39 * It is used internally in the JDK to implement jimage/jrtfs access,
40 * but also compiled and delivered as part of the jrtfs.jar to support access
H A DExplodedImage.java25 package jdk.internal.jrtfs;
50 * It is used internally in the JDK to implement jimage/jrtfs access,
51 * but also compiled and delivered as part of the jrtfs.jar to support access
H A DJrtFileSystem.java25 package jdk.internal.jrtfs;
74 * It is used internally in the JDK to implement jimage/jrtfs access,
75 * but also compiled and delivered as part of the jrtfs.jar to support access
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/resources/fx/
H A Dbase.js60 var jrtfs = FileSystems.getFileSystem(uri); variable
61 var rootDirectories = jrtfs.getRootDirectories();
/openjdk10/nashorn/src/jdk.scripting.nashorn.shell/share/classes/jdk/nashorn/tools/jjs/
H A DPackagesHelper.java81 private final FileSystem jrtfs; field in class:PackagesHelper
107 jrtfs = null;
113 jrtfs = FileSystems.getFileSystem(URI.create("jrt:/"));
173 } else if (jrtfs != null) {
175 Path pkgDir = jrtfs.getPath("/packages/" + pkg);
182 Path pkgUnderMod = jrtfs.getPath(mod.toString() + "/" + pkgSlashName);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DJRTIndex.java95 private final FileSystem jrtfs; field in class:JRTIndex
180 jrtfs = FileSystems.getFileSystem(URI.create("jrt:/"));
196 dir = jrtfs.getPath("/modules");
198 Path pkgs = jrtfs.getPath("/packages");
234 return (path.getFileSystem() == jrtfs);
H A DLocations.java1844 FileSystem jrtfs;
1847 jrtfs = FileSystems.getFileSystem(jrtURI);
1852 jrtfs = FileSystems.newFileSystem(jrtURI, attrMap);
1859 jrtfs = FileSystems.newFileSystem(jrtURI, Collections.emptyMap(), fsLoader);
1864 closeables.add(jrtfs);
1867 modules = jrtfs.getPath("/modules");
/openjdk10/make/
H A DJrtfsJar.gmk46 jdk/internal/jrtfs \
H A DMain.gmk334 jrtfs-jar:
359 zip-source jrtfs-jar jdk-image jre-image \
710 java.base-jmod: jrtfs-jar $(filter-out java.base-jmod, $(JMOD_TARGETS))
768 jrtfs-jar: interim-langtools
/openjdk10/jdk/src/java.base/share/classes/
H A Dmodule-info.java366 jdk.internal.jrtfs.JrtFileSystemProvider;
/openjdk10/jdk/test/tools/pack200/
H A DUtils.java623 FileSystem jrtfs = FileSystems.getFileSystem(URI.create("jrt:/"));
624 for (Path root : jrtfs.getRootDirectories()) {
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DSourceCodeAnalysisImpl.java1641 FileSystem jrtfs = FileSystems.getFileSystem(URI.create("jrt:/"));
1642 Path modules = jrtfs.getPath("modules");

Completed in 186 milliseconds