2 writes to _mutexHandle
System.Web (2)
Compilation\CompilationLock.cs (2)
66_mutexHandle = new HandleRef(this, UnsafeNativeMethods.InstrumentedMutexCreate(_name)); 93_mutexHandle = new HandleRef(this, IntPtr.Zero);
7 references to _mutexHandle
System.Web (7)
Compilation\CompilationLock.cs (7)
68if (_mutexHandle.Handle == IntPtr.Zero) { 91if (_mutexHandle.Handle != IntPtr.Zero) { 92UnsafeNativeMethods.InstrumentedMutexDelete(_mutexHandle); 103if (_mutexHandle.Handle == IntPtr.Zero) 119if (UnsafeNativeMethods.InstrumentedMutexGetLock(_mutexHandle, -1) == -1) { 137if (_mutexHandle.Handle == IntPtr.Zero) 147if (UnsafeNativeMethods.InstrumentedMutexReleaseLock(_mutexHandle) != 0)