16 references to GetThunk
System.Private.CoreLib (16)
System\Delegate.cs (16)
93if (GetThunk(OpenInstanceThunk) == _methodPtr) 135_methodPtr = GetThunk(ClosedInstanceThunkOverGenericMethod); 162_methodPtr = GetThunk(ClosedInstanceThunkOverGenericMethod); 192_methodPtr = GetThunk(ClosedInstanceThunkOverGenericMethod); 232internal bool IsDynamicDelegate() => GetThunk(MulticastThunk) == IntPtr.Zero; 267if ((_target is NativeFunctionPointerWrapper) || (_methodPtr == GetThunk(ObjectArrayThunk))) 287if ((_target is NativeFunctionPointerWrapper) || (_methodPtr == GetThunk(ObjectArrayThunk))) 337if (_methodPtr == GetThunk(ClosedStaticThunk) || 338_methodPtr == GetThunk(ClosedInstanceThunkOverGenericMethod) || 339_methodPtr == GetThunk(ObjectArrayThunk)) 372internal IntPtr TryGetOpenStaticFunctionPointer() => (GetThunk(OpenStaticThunk) == _methodPtr) ? _extraFunctionPointerOrData : 0; 395IntPtr objArrayThunk = del.GetThunk(Delegate.ObjectArrayThunk); 426IntPtr thunk = del.GetThunk(Delegate.OpenStaticThunk); 431IntPtr thunk = del.GetThunk(Delegate.ClosedStaticThunk); 439IntPtr thunk = del.GetThunk(Delegate.OpenInstanceThunk); 457result._methodPtr = thisIsMultiCastAlready ? _methodPtr : GetThunk(MulticastThunk);