1 instantiation of SafeOverlappedFree
System (1)
net\System\Net\_SafeNetHandles.cs (1)
708internal static readonly SafeOverlappedFree Zero = new SafeOverlappedFree(false);
9 references to SafeOverlappedFree
System (9)
net\System\Net\_SafeNetHandles.cs (5)
708internal static readonly SafeOverlappedFree Zero = new SafeOverlappedFree(false); 715public static SafeOverlappedFree Alloc() { 716SafeOverlappedFree result = UnsafeNclNativeMethods.SafeNetHandlesSafeOverlappedFree.LocalAlloc(LPTR, (UIntPtr) Win32.OverlappedSize); 724public static SafeOverlappedFree Alloc(SafeCloseSocket socketHandle) { 725SafeOverlappedFree result = Alloc();
net\System\Net\Sockets\_BaseOverlappedAsyncResult.cs (3)
26private SafeOverlappedFree m_UnmanagedBlob; // Handle for global memory. 165m_UnmanagedBlob = SafeOverlappedFree.Alloc(s.SafeHandle); 570return (m_UnmanagedBlob == null || m_UnmanagedBlob.IsInvalid)? SafeOverlappedFree.Zero : m_UnmanagedBlob;
net\System\Net\UnsafeNativeMethods.cs (1)
623internal static extern SafeOverlappedFree LocalAlloc(int uFlags, UIntPtr sizetdwBytes);