Searched refs:fileSystem (Results 1 - 12 of 12) sorted by relevance

/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/module/
H A DModuleSourceProvider.java38 private final FileSystem fileSystem; field in class:ModuleSourceProvider
47 public ModuleSourceProvider(FileSystem fileSystem, ClassLoader classLoader, FileSupport fileSupport) { argument
48 this.fileSystem = fileSystem;
55 Path path = fileSystem.getPath(name);
56 Path dir = fileSystem.getPath("modules");
73 return fileSupport.getSubDirectory(fileSystem, root, path);
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/jar/
H A DJarSourceProvider.java38 private final FileSystem fileSystem; field in class:JarSourceProvider
48 fileSystem = FileSystems.getDefault();
53 Path fileName = fileSystem.getPath(name);
54 Path jarFile = searchPath.find(fileSystem, fileName);
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/
H A DFileSupport.java75 FileSystem fileSystem = makeJarFileSystem(jarFile);
76 return fileSystem.getPath("/");
83 public Path getSubDirectory(FileSystem fileSystem, Path root, Path path) throws IOException { argument
84 DirectoryStream<Path> paths = fileSystem.provider().newDirectoryStream(root, null);
H A DSearchPath.java44 public Path find(FileSystem fileSystem, Path entry, String... defaults) { argument
57 Path newPath = fileSystem.getPath(searchPath, entry.toString());
64 Path newPath = fileSystem.getPath(searchPath.toString(), entry.toString());
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/directory/
H A DDirectorySourceProvider.java38 private final FileSystem fileSystem; field in class:DirectorySourceProvider
43 fileSystem = FileSystems.getDefault();
48 Path directoryPath = fileSystem.getPath(name);
/openjdk10/hotspot/test/compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/
H A DFakeSearchPath.java45 public Path find(FileSystem fileSystem, Path entry, String... defaults) { argument
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeps/
H A DJdepsConfiguration.java327 private final FileSystem fileSystem; field in class:JdepsConfiguration.SystemModuleFinder
334 this.fileSystem = FileSystems.getFileSystem(URI.create("jrt:/"));
335 this.root = fileSystem.getPath("/modules");
339 this.fileSystem = FileSystems.getDefault();
349 this.fileSystem = null;
360 this.fileSystem = FileSystems.newFileSystem(URI.create("jrt:/"), env);
361 this.root = fileSystem.getPath("/modules");
443 return ClassFileReader.newInstance(fileSystem, mp);
/openjdk10/hotspot/test/compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/module/
H A DModuleSourceProviderTest.java73 public Path getSubDirectory(FileSystem fileSystem, Path root, Path path) throws IOException {
/openjdk10/nashorn/test/src/jdk/nashorn/internal/test/framework/
H A DTestFinder.java124 final FileSystem fileSystem = FileSystems.getDefault();
128 final Path dir = fileSystem.getPath(root);
452 final FileSystem fileSystem = FileSystems.getDefault();
455 excludePaths[i++] = fileSystem.getPath(excludeDir);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java284 FileSystemView fileSystem = filechooser.getFileSystemView();
290 File[] list = fileSystem.getFiles(currentDirectory, filechooser.isFileHidingEnabled());
/openjdk10/jdk/src/java.desktop/macosx/classes/com/apple/laf/
H A DAquaFileSystemModel.java402 final FileSystemView fileSystem = filechooser.getFileSystemView();
404 final File[] list = fileSystem.getFiles(currentDirectory, filechooser.isFileHidingEnabled());
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java509 private final FileSystem fileSystem; field in class:JavacFileManager.ArchiveContainer
518 this.fileSystem = jarFSProvider.newFileSystem(archivePath, env);
520 this.fileSystem = FileSystems.newFileSystem(archivePath, null);
523 for (Path root : fileSystem.getRootDirectories()) {
607 fileSystem.close();

Completed in 131 milliseconds