/openjdk7/jdk/src/solaris/classes/sun/nio/fs/ |
H A D | UnixFileSystemProvider.java | 101 UnixPath checkPath(Path obj) { 104 if (!(obj instanceof UnixPath)) 106 return (UnixPath)obj; 115 UnixPath file = UnixPath.toUnixPath(obj); 152 UnixPath file = UnixPath.toUnixPath(obj); 171 UnixPath file = checkPath(obj); 188 UnixPath file = checkPath(obj); 208 UnixPath fil [all...] |
H A D | SolarisFileSystemProvider.java | 48 SolarisFileStore getFileStore(UnixPath path) throws IOException { 60 return (V) new SolarisAclFileAttributeView(UnixPath.toUnixPath(obj), 64 return(V) new SolarisUserDefinedFileAttributeView(UnixPath.toUnixPath(obj), 76 return new SolarisAclFileAttributeView(UnixPath.toUnixPath(obj), 79 return new SolarisUserDefinedFileAttributeView(UnixPath.toUnixPath(obj),
|
H A D | UnixPath.java | 43 class UnixPath class in inherits:AbstractPath 64 UnixPath(UnixFileSystem fs, byte[] path) { method in class:UnixPath 69 UnixPath(UnixFileSystem fs, String input) { method in class:UnixPath 195 // Checks that the given file is a UnixPath 196 static UnixPath toUnixPath(Path obj) { 199 if (!(obj instanceof UnixPath)) 201 return (UnixPath)obj; 253 private UnixPath emptyPath() { 254 return new UnixPath(getFileSystem(), new byte[0]); 263 public UnixPath getRoo [all...] |
H A D | BsdFileStore.java | 39 BsdFileStore(UnixPath file) throws IOException { 56 UnixPath path = null; 59 path = new UnixPath(fs, rp); 65 UnixPath parent = path.getParent();
|
H A D | BsdFileSystemProvider.java | 47 BsdFileStore getFileStore(UnixPath path) throws IOException {
|
H A D | UnixFileStoreAttributes.java | 37 static UnixFileStoreAttributes get(UnixPath path) throws UnixException {
|
H A D | LinuxFileStore.java | 43 LinuxFileStore(UnixPath file) throws IOException { 60 UnixPath path = null; 63 path = new UnixPath(fs, rp); 69 UnixPath parent = path.getParent(); 96 private boolean isExtendedAttributesEnabled(UnixPath path) { 142 UnixPath dir = new UnixPath(file().getFileSystem(), entry().dir());
|
H A D | LinuxFileSystemProvider.java | 48 LinuxFileStore getFileStore(UnixPath path) throws IOException { 59 return (V) new LinuxDosFileAttributeView(UnixPath.toUnixPath(obj), 63 return (V) new LinuxUserDefinedFileAttributeView(UnixPath.toUnixPath(obj), 75 return new LinuxDosFileAttributeView(UnixPath.toUnixPath(obj), 79 return new LinuxUserDefinedFileAttributeView(UnixPath.toUnixPath(obj),
|
H A D | UnixNativeDispatcher.java | 39 private static NativeBuffer copyToNativeBuffer(UnixPath path) { 68 static int open(UnixPath path, int flags, int mode) throws UnixException { 101 static long fopen(UnixPath filename, String mode) throws UnixException { 122 static void link(UnixPath existing, UnixPath newfile) throws UnixException { 138 static void unlink(UnixPath path) throws UnixException { 165 static void mknod(UnixPath path, int mode, long dev) throws UnixException { 179 static void rename(UnixPath from, UnixPath to) throws UnixException { 211 static void mkdir(UnixPath pat [all...] |
H A D | UnixException.java | 99 void rethrowAsIOException(UnixPath file, UnixPath other) throws IOException { 106 void rethrowAsIOException(UnixPath file) throws IOException { 110 IOException asIOException(UnixPath file) {
|
H A D | GnomeFileTypeDetector.java | 63 if (!(obj instanceof UnixPath)) 66 UnixPath path = (UnixPath)obj;
|
H A D | UnixSecureDirectoryStream.java | 48 UnixSecureDirectoryStream(UnixPath dir, 76 private UnixPath getName(Path obj) { 79 if (!(obj instanceof UnixPath)) 81 return (UnixPath)obj; 92 UnixPath file = getName(obj); 93 UnixPath child = ds.directory().resolve(file); 142 UnixPath file = getName(obj); 172 UnixPath file = getName(obj); 231 UnixPath from = getName(fromObj); 232 UnixPath t [all...] |
H A D | UnixCopyFile.java | 127 private static void copyDirectory(UnixPath source, 129 UnixPath target, 219 private static void copyFile(UnixPath source, 221 UnixPath target, 297 private static void copyLink(UnixPath source, 299 UnixPath target, 325 private static void copySpecial(UnixPath source, 327 UnixPath target, 366 static void move(UnixPath source, UnixPath targe [all...] |
H A D | UnixDirectoryStream.java | 43 private final UnixPath dir; 64 UnixDirectoryStream(UnixPath dir, long dp, DirectoryStream.Filter<? super Path> filter) { 70 protected final UnixPath directory() {
|
H A D | SolarisFileSystem.java | 106 UnixPath mnttab = new UnixPath(this, "/etc/mnttab");
|
H A D | UnixFileAttributeViews.java | 39 protected final UnixPath file; 42 Basic(UnixPath file, boolean followLinks) { 130 Posix(UnixPath file, boolean followLinks) { 301 Unix(UnixPath file, boolean followLinks) { 357 static Basic createBasicView(UnixPath file, boolean followLinks) { 361 static Posix createPosixView(UnixPath file, boolean followLinks) { 365 static Unix createUnixView(UnixPath file, boolean followLinks) { 369 static FileOwnerAttributeViewImpl createOwnerView(UnixPath file, boolean followLinks) {
|
H A D | UnixFileStore.java | 44 private final UnixPath file; 53 private static long devFor(UnixPath file) throws IOException { 62 UnixFileStore(UnixPath file) throws IOException { 69 this.file = new UnixPath(fs, entry.dir()); 79 UnixPath file() {
|
H A D | UnixFileSystem.java | 47 private final UnixPath rootDirectory; 52 this.defaultDirectory = UnixPath.normalizeAndCheck(dir).getBytes(); 81 this.rootDirectory = new UnixPath(this, "/"); 93 UnixPath rootDirectory() { 281 return new UnixPath(this, path);
|
H A D | LinuxWatchService.java | 105 LinuxWatchKey(UnixPath dir, LinuxWatchService watcher, int ifd, int wd) { 209 UnixPath dir = (UnixPath)obj; 344 UnixPath name = null; 360 name = new UnixPath(fs, buf); 398 private void processEvent(int wd, int mask, final UnixPath name) {
|
H A D | SolarisWatchService.java | 144 UnixPath dir, 155 UnixPath getDirectory() { 156 return (UnixPath)watchable(); 281 UnixPath dir = (UnixPath)obj; 543 void registerChildren(UnixPath dir, 576 object = registerImpl((UnixPath)entry, events); 640 long registerImpl(UnixPath dir, int events)
|
H A D | SolarisFileStore.java | 43 SolarisFileStore(UnixPath file) throws IOException {
|
H A D | UnixChannelFactory.java | 113 UnixPath path, 144 static FileChannel newFileChannel(UnixPath path, 155 static AsynchronousFileChannel newAsynchronousFileChannel(UnixPath path, 182 UnixPath path,
|
H A D | SolarisUserDefinedFileAttributeView.java | 45 private byte[] nameAsBytes(UnixPath file, String name) throws IOException { 59 private final UnixPath file; 62 SolarisUserDefinedFileAttributeView(UnixPath file, boolean followLinks) {
|
H A D | LinuxUserDefinedFileAttributeView.java | 52 private byte[] nameAsBytes(UnixPath file, String name) throws IOException { 87 private final UnixPath file; 90 LinuxUserDefinedFileAttributeView(UnixPath file, boolean followLinks) {
|
H A D | UnixFileAttributes.java | 61 static UnixFileAttributes get(UnixPath path, boolean followLinks) 81 static UnixFileAttributes get(int dfd, UnixPath path, boolean followLinks)
|