HomeSort by relevance Sort by last modified time
    Searched refs:followLinks (Results 1 - 23 of 23) sorted by null

  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileAttributeViews.java 40 protected final boolean followLinks;
42 Basic(UnixPath file, boolean followLinks) {
44 this.followLinks = followLinks;
52 UnixFileAttributes.get(file, followLinks);
74 int fd = file.openForAttributeAccess(followLinks);
76 // assert followLinks || !UnixFileAttributes.get(fd).isSymbolicLink();
140 Posix(UnixPath file, boolean followLinks) {
141 super(file, followLinks);
216 return UnixFileAttributes.get(file, followLinks);
    [all...]
Util.java 121 static boolean followLinks(LinkOption... options) {
122 boolean followLinks = true;
125 followLinks = false;
132 return followLinks;
UnixSecureDirectoryStream.java 110 boolean followLinks = Util.followLinks(options);
129 if (!followLinks)
289 boolean followLinks)
295 return (V) new BasicFileAttributeViewImpl(file, followLinks);
298 return (V) new PosixFileAttributeViewImpl(file, followLinks);
321 boolean followLinks = Util.followLinks(options);
322 return getFileAttributeViewImpl(file, type, followLinks);
332 final boolean followLinks;
    [all...]
LinuxUserDefinedFileAttributeView.java 93 private final boolean followLinks;
95 LinuxUserDefinedFileAttributeView(UnixPath file, boolean followLinks) {
97 this.followLinks = followLinks;
105 int fd = file.openForAttributeAccess(followLinks);
141 int fd = file.openForAttributeAccess(followLinks);
177 int fd = file.openForAttributeAccess(followLinks);
256 int fd = file.openForAttributeAccess(followLinks);
280 int fd = file.openForAttributeAccess(followLinks);
UnixFileSystemProvider.java 116 boolean followLinks = Util.followLinks(options);
118 return (V) UnixFileAttributeViews.createBasicView(file, followLinks);
120 return (V) UnixFileAttributeViews.createPosixView(file, followLinks);
122 return (V) UnixFileAttributeViews.createOwnerView(file, followLinks);
153 boolean followLinks = Util.followLinks(options);
155 return UnixFileAttributeViews.createBasicView(file, followLinks);
157 return UnixFileAttributeViews.createPosixView(file, followLinks);
159 return UnixFileAttributeViews.createUnixView(file, followLinks);
    [all...]
LinuxDosFileAttributeView.java 65 LinuxDosFileAttributeView(UnixPath file, boolean followLinks) {
66 super(file, followLinks);
120 int fd = file.openForAttributeAccess(followLinks);
260 int fd = file.openForAttributeAccess(followLinks);
UnixFileAttributes.java 65 static UnixFileAttributes get(UnixPath path, boolean followLinks)
69 if (followLinks) {
85 static UnixFileAttributes get(int dfd, UnixPath path, boolean followLinks)
89 int flag = (followLinks) ? 0 : UnixConstants.AT_SYMLINK_NOFOLLOW;
UnixChannelFactory.java 219 boolean followLinks = true;
230 followLinks = false;
266 if (!followLinks && (x.errno() == ELOOP)) {
UnixCopyFile.java 51 boolean followLinks;
66 flags.followLinks = true;
73 flags.followLinks = false;
524 sourceAttrs = UnixFileAttributes.get(source, flags.followLinks);
UnixPath.java 769 int openForAttributeAccess(boolean followLinks) throws IOException {
771 if (!followLinks) {
832 if (Util.followLinks(options)) {
  /libcore/ojluni/src/main/java/java/nio/file/
CopyMoveHelper.java 46 boolean followLinks = true;
58 result.followLinks = false;
105 LinkOption[] linkOptions = (opts.followLinks) ? new LinkOption[0] :
FileTreeWalker.java 58 private final boolean followLinks;
190 this.followLinks = fl;
210 if (cached != null && (!followLinks || !cached.isSymbolicLink())) {
221 if (!followLinks)
292 if (followLinks && wouldLoop(entry, attrs.fileKey())) {
Files.java     [all...]
  /build/soong/finder/fs/
fs.go 233 return m.followLinks(path, followLastLink, 10)
236 // note that followLinks can return a file path that doesn't exist
237 func (m *MockFs) followLinks(path string, followLastLink bool, count int) (canonicalPath string, err error) {
249 parentPath, err = m.followLinks(parentPath, true, count)
286 return m.followLinks(target, followLastLink, count-1)
  /prebuilts/tools/common/m2/repository/org/assertj/assertj-core/2.0.0/
assertj-core-2.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/assertj/assertj-core/3.8.0/
assertj-core-3.8.0.jar 
  /prebuilts/devtools/tools/lib/
guava-22.0.jar 
  /prebuilts/misc/common/guava/
guava-21.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/21.0/
guava-21.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/22.0/
guava-22.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/23.0/
guava-23.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/23.5-jre/
guava-23.5-jre.jar 
  /prebuilts/tools/common/m2/repository/org/apache/logging/log4j/log4j-core/2.5/
log4j-core-2.5.jar 

Completed in 228 milliseconds