Lines Matching defs:followLink
456 bool CFileInfo::Find(CFSTR path, bool followLink)
530 isOk = Find(filePath, followLink); // check it (followLink)
660 if (!followLink
750 bool DoesDirExist(CFSTR name, bool followLink)
753 return fi.Find(name, followLink) && fi.IsDir();
928 static int MY__lstat(CFSTR path, struct stat *st, bool followLink)
933 if (/* global_use_lstat && */ !followLink)
1114 bool CFileInfo::Find_DontFill_Name(CFSTR path, bool followLink)
1117 if (MY__lstat(path, &st, followLink) != 0)
1125 bool CFileInfo::Find(CFSTR path, bool followLink)
1128 if (!Find_DontFill_Name(path, followLink))
1162 bool DoesDirExist(CFSTR name, bool followLink)
1165 if (MY__lstat(name, &st, followLink) != 0)
1306 bool CEnumerator::Fill_FileInfo(const CDirEntry &de, CFileInfo &fileInfo, bool followLink) const
1311 int res = fstatat(dirfd(_dir), de.Name, &st, followLink ? 0 : AT_SYMLINK_NOFOLLOW);
1316 int res = MY__lstat(path, &st, followLink);