3 instantiations of SECURITY_ATTRIBUTES
Microsoft.Build.Engine (3)
LocalProvider\LocalNodeProvider.cs (2)
780NativeMethods.SECURITY_ATTRIBUTES pSec = new NativeMethods.SECURITY_ATTRIBUTES(); 781NativeMethods.SECURITY_ATTRIBUTES tSec = new NativeMethods.SECURITY_ATTRIBUTES();
LocalProvider\SharedMemory.cs (1)
167NativeMethods.SECURITY_ATTRIBUTES saAttr = new NativeMethods.SECURITY_ATTRIBUTES();
7 references to SECURITY_ATTRIBUTES
Microsoft.Build.Engine (7)
LocalProvider\LocalNodeProvider.cs (2)
780NativeMethods.SECURITY_ATTRIBUTES pSec = new NativeMethods.SECURITY_ATTRIBUTES(); 781NativeMethods.SECURITY_ATTRIBUTES tSec = new NativeMethods.SECURITY_ATTRIBUTES();
LocalProvider\NativeMethods.cs (2)
149ref SECURITY_ATTRIBUTES lpProcessAttributes, 150ref SECURITY_ATTRIBUTES lpThreadAttributes,
LocalProvider\SharedMemory.cs (3)
167NativeMethods.SECURITY_ATTRIBUTES saAttr = new NativeMethods.SECURITY_ATTRIBUTES(); 175saAttr.nLength = Marshal.SizeOf(typeof(NativeMethods.SECURITY_ATTRIBUTES)); 177pointerToSecurityAttributes = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(NativeMethods.SECURITY_ATTRIBUTES)));