4 instantiations of SECURITY_ATTRIBUTES
System (4)
compmod\microsoft\win32\NativeMethods.cs (1)
241SECURITY_ATTRIBUTES secAttrs = new SECURITY_ATTRIBUTES();
services\monitoring\system\diagnosticts\Process.cs (1)
1908NativeMethods.SECURITY_ATTRIBUTES securityAttributesParent = new NativeMethods.SECURITY_ATTRIBUTES();
services\monitoring\system\diagnosticts\SharedPerformanceCounter.cs (1)
1567NativeMethods.SECURITY_ATTRIBUTES securityAttributes = new NativeMethods.SECURITY_ATTRIBUTES();
sys\system\threading\semaphore.cs (1)
126secAttrs = new NativeMethods.SECURITY_ATTRIBUTES();
16 references to SECURITY_ATTRIBUTES
System (16)
compmod\microsoft\win32\NativeMethods.cs (9)
185public static extern bool CreatePipe(out SafeFileHandle hReadPipe, out SafeFileHandle hWritePipe, SECURITY_ATTRIBUTES lpPipeAttributes, int nSize); 193SECURITY_ATTRIBUTES lpProcessAttributes, // LPSECURITY_ATTRIBUTES 194SECURITY_ATTRIBUTES lpThreadAttributes, // LPSECURITY_ATTRIBUTES 237private static extern bool CreateDirectory(string path, SECURITY_ATTRIBUTES lpSecurityAttributes); 241SECURITY_ATTRIBUTES secAttrs = new SECURITY_ATTRIBUTES(); 267SECURITY_ATTRIBUTES lpProcessAttributes, 268SECURITY_ATTRIBUTES lpThreadAttributes, 1164internal static extern SafeFileMappingHandle CreateFileMapping(IntPtr hFile, NativeMethods.SECURITY_ATTRIBUTES lpFileMappingAttributes, int flProtect, int dwMaximumSizeHigh, int dwMaximumSizeLow, string lpName); 1307public static extern SafeFileHandle CreateFile(string lpFileName,int dwDesiredAccess,int dwShareMode, SECURITY_ATTRIBUTES lpSecurityAttributes, int dwCreationDisposition,int dwFlagsAndAttributes, SafeFileHandle hTemplateFile);
compmod\microsoft\win32\safehandles\SafeUserTokenHandle.cs (1)
44internal extern static bool DuplicateTokenEx(SafeHandle hToken, int access, NativeMethods.SECURITY_ATTRIBUTES tokenAttributes, int impersonationLevel, int tokenType, out SafeUserTokenHandle hNewToken);
compmod\microsoft\win32\SafeNativeMethods.cs (1)
223internal static extern SafeWaitHandle CreateSemaphore(NativeMethods.SECURITY_ATTRIBUTES lpSecurityAttributes, int initialCount, int maximumCount, String name);
net\System\Net\UnsafeNativeMethods.cs (1)
655Microsoft.Win32.NativeMethods.SECURITY_ATTRIBUTES pSecurityAttributes, uint flags, out HttpRequestQueueV2Handle pReqQueueHandle);
services\monitoring\system\diagnosticts\Process.cs (2)
1891private static void CreatePipeWithSecurityAttributes(out SafeFileHandle hReadPipe, out SafeFileHandle hWritePipe, NativeMethods.SECURITY_ATTRIBUTES lpPipeAttributes, int nSize) { 1908NativeMethods.SECURITY_ATTRIBUTES securityAttributesParent = new NativeMethods.SECURITY_ATTRIBUTES();
services\monitoring\system\diagnosticts\SharedPerformanceCounter.cs (1)
1567NativeMethods.SECURITY_ATTRIBUTES securityAttributes = new NativeMethods.SECURITY_ATTRIBUTES();
sys\system\threading\semaphore.cs (1)
125NativeMethods.SECURITY_ATTRIBUTES secAttrs = null;