Searched refs:FOLLOW_LINKS (Results 1 – 6 of 6) sorted by relevance
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/ |
D | Options.java | 51 public static final ImmutableSet<LinkOption> FOLLOW_LINKS = ImmutableSet.of(); field in Options 63 return options.length == 0 ? FOLLOW_LINKS : NOFOLLOW_LINKS; in getLinkOptions() 110 (ImmutableSet<?>) (nofollowLinks ? NOFOLLOW_LINKS : FOLLOW_LINKS); in getOptionsForInputStream()
|
D | FileSystemView.java | 154 Directory dir = (Directory) lookUp(path, Options.FOLLOW_LINKS).requireDirectory(path).file(); in snapshotModifiedTimes() 183 File file = lookUp(path, Options.FOLLOW_LINKS).fileOrNull(); in isSameFile() 184 File file2 = view2.lookUp(path2, Options.FOLLOW_LINKS).fileOrNull(); in isSameFile() 384 lookUpWithLock(path, Options.FOLLOW_LINKS).requireExists(path); in checkAccess() 416 existingView.lookUp(existing, Options.FOLLOW_LINKS).requireExists(existing).file(); in link()
|
D | FileTree.java | 187 return lookUp(dir, link.target(), Options.FOLLOW_LINKS, linkDepth + 1); in followSymbolicLink()
|
D | JimfsFileSystemProvider.java | 210 .newDirectoryStream(checkedPath, filter, Options.FOLLOW_LINKS, checkedPath); in newDirectoryStream()
|
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/ |
D | PathSubject.java | 53 private static final LinkOption[] FOLLOW_LINKS = new LinkOption[0]; field in PathSubject 57 protected LinkOption[] linkOptions = FOLLOW_LINKS;
|
/external/guava/guava/src/com/google/common/io/ |
D | MoreFiles.java | 89 private static final LinkOption[] FOLLOW_LINKS = {}; field in MoreFiles.PathByteSource 120 followLinks ? FOLLOW_LINKS : new LinkOption[] {NOFOLLOW_LINKS}); in readAttributes()
|