Home
last modified time | relevance | path

Searched refs:FOLLOW_LINKS (Results 1 – 6 of 6) sorted by relevance

/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DOptions.java51 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()
DFileSystemView.java154 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()
DFileTree.java187 return lookUp(dir, link.target(), Options.FOLLOW_LINKS, linkDepth + 1); in followSymbolicLink()
DJimfsFileSystemProvider.java210 .newDirectoryStream(checkedPath, filter, Options.FOLLOW_LINKS, checkedPath); in newDirectoryStream()
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DPathSubject.java53 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/
DMoreFiles.java89 private static final LinkOption[] FOLLOW_LINKS = {}; field in MoreFiles.PathByteSource
120 followLinks ? FOLLOW_LINKS : new LinkOption[] {NOFOLLOW_LINKS}); in readAttributes()