1 write to InodeType
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\IO\Enumeration\FileSystemEntry.Unix.cs (1)
63entry._directoryEntry.InodeType = Interop.Sys.NodeType.DT_LNK;
7 references to InodeType
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\IO\Enumeration\FileSystemEntry.Unix.cs (4)
46bool isDirectory = directoryEntry.InodeType == Interop.Sys.NodeType.DT_DIR; 47bool isSymlink = directoryEntry.InodeType == Interop.Sys.NodeType.DT_LNK; 48bool isUnknown = directoryEntry.InodeType == Interop.Sys.NodeType.DT_UNKNOWN; 158internal bool IsSymbolicLink => _directoryEntry.InodeType == Interop.Sys.NodeType.DT_LNK;
src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.Unix.NonAndroid.cs (3)
300if (dirent.InodeType == Interop.Sys.NodeType.DT_DIR) 305else if (dirent.InodeType == Interop.Sys.NodeType.DT_LNK || dirent.InodeType == Interop.Sys.NodeType.DT_UNKNOWN)