4 references to SeekWhence
System.Private.CoreLib (4)
src\libraries\Common\src\Interop\Unix\System.Native\Interop.LSeek.cs (1)
19
internal static partial long LSeek(SafeFileHandle fd, long offset,
SeekWhence
whence);
src\libraries\System.Private.CoreLib\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs (2)
347
Debug.Assert(Interop.Sys.LSeek(this, 0, Interop.Sys.
SeekWhence
.SEEK_CUR) >= 0);
521
_canSeek = canSeek = Interop.Sys.LSeek(this, 0, Interop.Sys.
SeekWhence
.SEEK_CUR) >= 0 ? NullableBool.True : NullableBool.False;
src\libraries\System.Private.CoreLib\src\System\IO\Strategies\FileStreamHelpers.Unix.cs (1)
34
CheckFileCall(Interop.Sys.LSeek(handle, offset, (Interop.Sys.
SeekWhence
)(int)origin), handle.Path); // SeekOrigin values are the same as Interop.libc.SeekWhence values