4 references to LockType
System.Private.CoreLib (4)
src\libraries\Common\src\Interop\Unix\System.Native\Interop.LockFileRegion.cs (1)
18internal static partial int LockFileRegion(SafeHandle fd, long offset, long length, LockType lockType);
src\libraries\System.Private.CoreLib\src\System\IO\Strategies\FileStreamHelpers.Unix.cs (3)
66CheckFileCall(Interop.Sys.LockFileRegion(handle, position, length, canWrite ? Interop.Sys.LockType.F_WRLCK : Interop.Sys.LockType.F_RDLCK), handle.Path); 76CheckFileCall(Interop.Sys.LockFileRegion(handle, position, length, Interop.Sys.LockType.F_UNLCK), handle.Path);