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