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

/openjdk9/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/module/
H A DModuleSourceProvider.java37 private final FileSystem fileSystem; field in class:ModuleSourceProvider
46 public ModuleSourceProvider(FileSystem fileSystem, ClassLoader classLoader, FileSupport fileSupport) { argument
47 this.fileSystem = fileSystem;
54 Path path = fileSystem.getPath(name);
55 Path dir = fileSystem.getPath("modules");
72 return fileSupport.getSubDirectory(fileSystem, root, path);
/openjdk9/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/jar/
H A DJarSourceProvider.java37 private final FileSystem fileSystem; field in class:JarSourceProvider
47 fileSystem = FileSystems.getDefault();
52 Path fileName = fileSystem.getPath(name);
53 Path jarFile = searchPath.find(fileSystem, fileName);
/openjdk9/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/
H A DFileSupport.java72 FileSystem fileSystem = makeJarFileSystem(jarFile);
73 return fileSystem.getPath("/");
80 public Path getSubDirectory(FileSystem fileSystem, Path root, Path path) throws IOException { argument
81 DirectoryStream<Path> paths = fileSystem.provider().newDirectoryStream(root,null);
H A DSearchPath.java43 public Path find(FileSystem fileSystem, Path entry, String... defaults) { argument
56 Path newPath = fileSystem.getPath(searchPath, entry.toString());
63 Path newPath = fileSystem.getPath(searchPath.toString(), entry.toString());
/openjdk9/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/directory/
H A DDirectorySourceProvider.java37 private final FileSystem fileSystem; field in class:DirectorySourceProvider
42 fileSystem = FileSystems.getDefault();
47 Path directoryPath = fileSystem.getPath(name);
/openjdk9/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
/openjdk9/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);
/openjdk9/hotspot/test/compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/module/
H A DModuleSourceProviderTest.java69 public Path getSubDirectory(FileSystem fileSystem, Path root, Path path) throws IOException {
/openjdk9/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);
/openjdk9/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());
/openjdk9/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());
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java508 private final FileSystem fileSystem; field in class:JavacFileManager.ArchiveContainer
517 this.fileSystem = jarFSProvider.newFileSystem(archivePath, env);
519 this.fileSystem = FileSystems.newFileSystem(archivePath, null);
522 for (Path root : fileSystem.getRootDirectories()) {
606 fileSystem.close();

Completed in 168 milliseconds