Lines Matching defs:fs

161     private static final FileSystem fs = DefaultFileSystem.getFileSystem();
220 public static final char separatorChar = fs.getSeparator();
239 public static final char pathSeparatorChar = fs.getPathSeparator();
267 this.path = fs.resolve(parent.path, child);
284 this.path = fs.normalize(pathname);
285 this.prefixLength = fs.prefixLength(this.path);
325 this.path = fs.resolve(fs.normalize(parent),
326 fs.normalize(child));
328 this.path = fs.normalize(child);
330 this.prefixLength = fs.prefixLength(this.path);
364 this.path = fs.resolve(fs.getDefaultParent(),
365 fs.normalize(child));
367 this.path = fs.resolve(parent.path,
368 fs.normalize(child));
371 this.path = fs.normalize(child);
373 this.prefixLength = fs.prefixLength(this.path);
433 p = fs.fromURIPath(p);
436 this.path = fs.normalize(p);
437 this.prefixLength = fs.prefixLength(this.path);
527 return fs.isAbsolute(this);
544 return fs.resolve(this);
561 return new File(absPath, fs.prefixLength(absPath));
606 return fs.canonicalize(fs.resolve(this));
632 return new File(canonPath, fs.prefixLength(canonPath));
756 return fs.checkAccess(this, FileSystem.ACCESS_READ);
783 return fs.checkAccess(this, FileSystem.ACCESS_WRITE);
807 return fs.checkAccess(this, FileSystem.ACCESS_OK);
837 return ((fs.getBooleanAttributes(this) & FileSystem.BA_DIRECTORY)
870 return ((fs.getBooleanAttributes(this) & FileSystem.BA_REGULAR) != 0);
899 return ((fs.getBooleanAttributes(this) & FileSystem.BA_HIDDEN) != 0);
931 return fs.getLastModifiedTime(this);
962 return fs.getLength(this);
1000 return fs.createFileExclusively(path);
1029 return fs.delete(this);
1122 return fs.list(this);
1210 File[] fs = new File[n];
1212 fs[i] = new File(ss[i], this);
1214 return fs;
1316 return fs.createDirectory(this);
1402 return fs.rename(this, dest);
1440 return fs.setLastModifiedTime(this, time);
1470 return fs.setReadOnly(this);
1513 return fs.setPermission(this, FileSystem.ACCESS_WRITE, writable, ownerOnly);
1590 return fs.setPermission(this, FileSystem.ACCESS_READ, readable, ownerOnly);
1670 return fs.setPermission(this, FileSystem.ACCESS_EXECUTE, executable, ownerOnly);
1731 return fs.checkAccess(this, FileSystem.ACCESS_EXECUTE);
1743 return fs.listRoots();
1773 return fs.getSpace(this, FileSystem.SPACE_TOTAL);
1811 return fs.getSpace(this, FileSystem.SPACE_FREE);
1857 return fs.getSpace(this, FileSystem.SPACE_USABLE);
1999 } while ((fs.getBooleanAttributes(f) & FileSystem.BA_EXISTS) != 0);
2001 if (!fs.createFileExclusively(f.getPath()))
2070 return fs.compare(this, pathname);
2109 return fs.hashCode(this);
2150 String path = fs.normalize(pathField);
2152 UNSAFE.putIntVolatile(this, PREFIX_LENGTH_OFFSET, fs.prefixLength(path));