Lines Matching defs:fs

162     private static final FileSystem fs = DefaultFileSystem.getFileSystem();
221 public static final char separatorChar = fs.getSeparator();
240 public static final char pathSeparatorChar = fs.getPathSeparator();
268 this.path = fs.resolve(parent.path, child);
285 this.path = fs.normalize(pathname);
286 this.prefixLength = fs.prefixLength(this.path);
327 this.path = fs.resolve(fs.normalize(parent),
328 fs.normalize(child));
331 this.path = fs.normalize(child);
333 this.prefixLength = fs.prefixLength(this.path);
367 this.path = fs.resolve(fs.getDefaultParent(),
368 fs.normalize(child));
370 this.path = fs.resolve(parent.path,
371 fs.normalize(child));
374 this.path = fs.normalize(child);
376 this.prefixLength = fs.prefixLength(this.path);
436 p = fs.fromURIPath(p);
439 this.path = fs.normalize(p);
440 this.prefixLength = fs.prefixLength(this.path);
531 return fs.isAbsolute(this);
549 return fs.resolve(this);
566 return new File(absPath, fs.prefixLength(absPath));
611 return fs.canonicalize(fs.resolve(this));
637 return new File(canonPath, fs.prefixLength(canonPath));
763 return fs.checkAccess(this, FileSystem.ACCESS_READ);
790 return fs.checkAccess(this, FileSystem.ACCESS_WRITE);
815 return fs.checkAccess(this, FileSystem.ACCESS_OK);
845 return ((fs.getBooleanAttributes(this) & FileSystem.BA_DIRECTORY)
878 return ((fs.getBooleanAttributes(this) & FileSystem.BA_REGULAR) != 0);
907 return ((fs.getBooleanAttributes(this) & FileSystem.BA_HIDDEN) != 0);
939 return fs.getLastModifiedTime(this);
970 return fs.getLength(this);
1008 return fs.createFileExclusively(path);
1037 return fs.delete(this);
1131 return fs.list(this);
1219 File[] fs = new File[n];
1221 fs[i] = new File(ss[i], this);
1223 return fs;
1325 return fs.createDirectory(this);
1412 return fs.rename(this, dest);
1450 return fs.setLastModifiedTime(this, time);
1480 return fs.setReadOnly(this);
1523 return fs.setPermission(this, FileSystem.ACCESS_WRITE, writable, ownerOnly);
1600 return fs.setPermission(this, FileSystem.ACCESS_READ, readable, ownerOnly);
1680 return fs.setPermission(this, FileSystem.ACCESS_EXECUTE, executable, ownerOnly);
1741 return fs.checkAccess(this, FileSystem.ACCESS_EXECUTE);
1753 return fs.listRoots();
1783 return fs.getSpace(this, FileSystem.SPACE_TOTAL);
1821 return fs.getSpace(this, FileSystem.SPACE_FREE);
1868 return fs.getSpace(this, FileSystem.SPACE_USABLE);
2016 } while ((fs.getBooleanAttributes(f) & FileSystem.BA_EXISTS) != 0);
2018 if (!fs.createFileExclusively(f.getPath()))
2087 return fs.compare(this, pathname);
2126 return fs.hashCode(this);
2167 String path = fs.normalize(pathField);
2169 UNSAFE.putIntVolatile(this, PREFIX_LENGTH_OFFSET, fs.prefixLength(path));