Searched refs:SecurityAttributes (Results 1 – 9 of 9) sorted by relevance
/reactos/modules/rostests/rosautotest/ |
H A D | CPipe.cpp | 19 SECURITY_ATTRIBUTES SecurityAttributes; in CPipe() local 21 SecurityAttributes.nLength = sizeof(SecurityAttributes); in CPipe() 22 SecurityAttributes.bInheritHandle = TRUE; in CPipe() 23 SecurityAttributes.lpSecurityDescriptor = NULL; in CPipe() 42 &SecurityAttributes); in CPipe() 53 &SecurityAttributes, in CPipe()
|
/reactos/dll/win32/userenv/ |
H A D | gpolicy.c | 266 SECURITY_ATTRIBUTES SecurityAttributes; in CreateGPEvent() local 268 SecurityAttributes.nLength = sizeof(SECURITY_ATTRIBUTES); in CreateGPEvent() 269 SecurityAttributes.lpSecurityDescriptor = lpSecurityDescriptor; in CreateGPEvent() 270 SecurityAttributes.bInheritHandle = FALSE; in CreateGPEvent() 272 hEvent = CreateEventW(&SecurityAttributes, in CreateGPEvent() 484 SECURITY_ATTRIBUTES SecurityAttributes; in EnterCriticalPolicySection() local 492 SecurityAttributes.nLength = sizeof(SECURITY_ATTRIBUTES); in EnterCriticalPolicySection() 493 SecurityAttributes.lpSecurityDescriptor = lpSecurityDescriptor; in EnterCriticalPolicySection() 494 SecurityAttributes.bInheritHandle = FALSE; in EnterCriticalPolicySection() 496 hSection = CreateMutexW(&SecurityAttributes, in EnterCriticalPolicySection()
|
H A D | profile.c | 152 SECURITY_ATTRIBUTES SecurityAttributes; in CreateProfileMutex() local 181 SecurityAttributes.nLength = sizeof(SecurityAttributes); in CreateProfileMutex() 182 SecurityAttributes.lpSecurityDescriptor = &SecurityDescriptor; in CreateProfileMutex() 183 SecurityAttributes.bInheritHandle = FALSE; in CreateProfileMutex() 186 hMutex = CreateMutexW(&SecurityAttributes, in CreateProfileMutex()
|
/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/ |
H A D | dosfiles.c | 196 SECURITY_ATTRIBUTES SecurityAttributes; in DosCreateFileEx() local 329 SecurityAttributes.nLength = sizeof(SecurityAttributes); in DosCreateFileEx() 330 SecurityAttributes.lpSecurityDescriptor = NULL; in DosCreateFileEx() 331 SecurityAttributes.bInheritHandle = InheritableFile; in DosCreateFileEx() 337 &SecurityAttributes, in DosCreateFileEx() 549 SECURITY_ATTRIBUTES SecurityAttributes; in DosOpenFile() local 611 SecurityAttributes.nLength = sizeof(SecurityAttributes); in DosOpenFile() 612 SecurityAttributes.lpSecurityDescriptor = NULL; in DosOpenFile() 613 SecurityAttributes.bInheritHandle = InheritableFile; in DosOpenFile() 619 &SecurityAttributes, in DosOpenFile()
|
/reactos/base/services/dhcpcsvc/dhcp/ |
H A D | pipe.c | 285 SECURITY_ATTRIBUTES SecurityAttributes; in PipeThreadProc() local 297 SecurityAttributes.nLength = sizeof(SECURITY_ATTRIBUTES); in PipeThreadProc() 298 SecurityAttributes.lpSecurityDescriptor = DhcpPipeSD; in PipeThreadProc() 299 SecurityAttributes.bInheritHandle = FALSE; in PipeThreadProc() 309 &SecurityAttributes ); in PipeThreadProc()
|
/reactos/dll/win32/kernel32/client/ |
H A D | utils.c | 305 IN PSECURITY_ATTRIBUTES SecurityAttributes OPTIONAL, in BaseFormatObjectAttributes() 312 SecurityAttributes, ObjectName); in BaseFormatObjectAttributes() 315 if (SecurityAttributes) in BaseFormatObjectAttributes() 317 Attributes = SecurityAttributes->bInheritHandle ? OBJ_INHERIT : 0; in BaseFormatObjectAttributes() 318 SecurityDescriptor = SecurityAttributes->lpSecurityDescriptor; in BaseFormatObjectAttributes()
|
/reactos/base/system/services/ |
H A D | database.c | 58 SECURITY_ATTRIBUTES SecurityAttributes; in ScmCreateNewControlPipe() local 129 SecurityAttributes.nLength = sizeof(SecurityAttributes); in ScmCreateNewControlPipe() 130 SecurityAttributes.lpSecurityDescriptor = pPipeSD; in ScmCreateNewControlPipe() 131 SecurityAttributes.bInheritHandle = FALSE; in ScmCreateNewControlPipe() 140 &SecurityAttributes); in ScmCreateNewControlPipe()
|
/reactos/dll/win32/kernel32/include/ |
H A D | kernel32.h | 181 IN PSECURITY_ATTRIBUTES SecurityAttributes OPTIONAL,
|
/reactos/dll/win32/rpcrt4/ |
H A D | rpc_transport.c | 327 SECURITY_ATTRIBUTES SecurityAttributes; in rpcrt4_conn_create_pipe() local 341 SecurityAttributes.nLength = sizeof(SECURITY_ATTRIBUTES); in rpcrt4_conn_create_pipe() 342 SecurityAttributes.lpSecurityDescriptor = PipeSecDesc; in rpcrt4_conn_create_pipe() 343 SecurityAttributes.bInheritHandle = FALSE; in rpcrt4_conn_create_pipe() 348 … RPC_MAX_PACKET_SIZE, RPC_MAX_PACKET_SIZE, 5000, &SecurityAttributes); in rpcrt4_conn_create_pipe()
|