10 references to EnterHelperResult
System.Private.CoreLib (10)
src\System\Threading\Monitor.CoreCLR.cs (10)
65private static extern EnterHelperResult TryEnter_FastPath_WithTimeout(object obj, int timeout); 196EnterHelperResult tryEnterResult = TryEnter_FastPath_WithTimeout(obj, 0); 197if (tryEnterResult == EnterHelperResult.Entered) 201else if (tryEnterResult == EnterHelperResult.Contention) 213EnterHelperResult tryEnterResult = TryEnter_FastPath_WithTimeout(obj, millisecondsTimeout); 214if (tryEnterResult == EnterHelperResult.Entered) 219else if (millisecondsTimeout == 0 && (tryEnterResult == EnterHelperResult.Contention)) 257EnterHelperResult tryEnterResult = TryEnter_FastPath_WithTimeout(obj, millisecondsTimeout); 258if (tryEnterResult == EnterHelperResult.Entered) 262else if (millisecondsTimeout == 0 && (tryEnterResult == EnterHelperResult.Contention))