17 references to NullableBool
System.Private.CoreLib (17)
src\libraries\System.Private.CoreLib\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs (17)
41
private volatile
NullableBool
_canSeek =
NullableBool
.Undefined;
42
private volatile
NullableBool
_supportsRandomAccess =
NullableBool
.Undefined;
64
NullableBool
supportsRandomAccess = _supportsRandomAccess;
65
if (supportsRandomAccess ==
NullableBool
.Undefined)
67
_supportsRandomAccess = supportsRandomAccess = GetCanSeek() ?
NullableBool
.True :
NullableBool
.False;
70
return supportsRandomAccess ==
NullableBool
.True;
75
_supportsRandomAccess = value ?
NullableBool
.True :
NullableBool
.False;
346
_canSeek =
NullableBool
.True;
518
NullableBool
canSeek = _canSeek;
519
if (canSeek ==
NullableBool
.Undefined)
521
_canSeek = canSeek = Interop.Sys.LSeek(this, 0, Interop.Sys.SeekWhence.SEEK_CUR) >= 0 ?
NullableBool
.True :
NullableBool
.False;
524
return canSeek ==
NullableBool
.True;