Searched defs:getFileStore (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
H A DLinuxFileSystem.java113 FileStore getFileStore(UnixMountEntry entry) throws IOException { method in class:LinuxFileSystem
H A DLinuxFileSystemProvider.java48 LinuxFileStore getFileStore(UnixPath path) throws IOException { method in class:LinuxFileSystemProvider
53 throw new SecurityException("getFileStore");
H A DUnixFileSystem.java179 abstract FileStore getFileStore(UnixMountEntry entry) throws IOException; method in class:UnixFileSystem
213 return getFileStore(entry);
H A DUnixFileSystemProvider.java358 abstract FileStore getFileStore(UnixPath path) throws IOException; method in class:UnixFileSystemProvider
361 public FileStore getFileStore(Path obj) throws IOException { method in class:UnixFileSystemProvider
362 // BEGIN Android-changed: getFileStore(Path) always throws SecurityException.
372 return getFileStore(file);
374 throw new SecurityException("getFileStore");
375 // END Android-changed: getFileStore(Path) always throws SecurityException.
/libcore/luni/src/test/filesystems/src/mypackage/
H A DMockFileSystemProvider.java107 public FileStore getFileStore(Path path) throws IOException { method in class:MockFileSystemProvider
/libcore/ojluni/src/main/java/java/nio/file/spi/
H A DFileSystemProvider.java892 * {@link Files#getFileStore} method.
908 public abstract FileStore getFileStore(Path path) throws IOException; method in class:FileSystemProvider
/libcore/ojluni/src/main/java/java/nio/file/
H A DFiles.java1460 public static FileStore getFileStore(Path path) throws IOException { method in class:Files
1461 return provider(path).getFileStore(path);

Completed in 774 milliseconds