6 writes to _LockWriteState
System (6)
net\System\Net\SecureProtocols\_SslState.cs (6)
1267int lockState = Interlocked.CompareExchange(ref _LockWriteState, LockWrite, LockNone); 1283_LockWriteState = LockPendingWrite; 1302int lockState = Interlocked.CompareExchange(ref _LockWriteState, LockNone, LockWrite); 1359int lockState = Interlocked.Exchange(ref _LockWriteState, LockHandshake); 1394int lockState = Interlocked.CompareExchange(ref _LockWriteState, LockNone, LockHandshake); 1400_LockWriteState = LockWrite;
2 references to _LockWriteState
System (2)
net\System\Net\SecureProtocols\_SslState.cs (2)
1276if (_LockWriteState != LockHandshake) 1355if (_LockWriteState == LockPendingWrite)