Searched defs:pSecurityDescriptor (Results 1 - 4 of 4) sorted by relevance
/openjdk7/jdk/src/windows/classes/sun/nio/fs/ |
H A D | WindowsChannelFactory.java | 139 long pSecurityDescriptor) 159 FileDescriptor fdObj = open(pathForWindows, pathToCheck, flags, pSecurityDescriptor); 176 long pSecurityDescriptor, 197 fdObj = open(pathForWindows, pathToCheck, flags, pSecurityDescriptor); 222 long pSecurityDescriptor) 302 pSecurityDescriptor, 136 newFileChannel(String pathForWindows, String pathToCheck, Set<? extends OpenOption> options, long pSecurityDescriptor) argument 173 newAsynchronousFileChannel(String pathForWindows, String pathToCheck, Set<? extends OpenOption> options, long pSecurityDescriptor, ThreadPool pool) argument 219 open(String pathForWindows, String pathToCheck, Flags flags, long pSecurityDescriptor) argument
|
H A D | WindowsSecurityDescriptor.java | 368 static List<AclEntry> getAcl(long pSecurityDescriptor) throws IOException { argument 370 long aclAddress = GetSecurityDescriptorDacl(pSecurityDescriptor);
|
H A D | WindowsNativeDispatcher.java | 515 * PSECURITY_DESCRIPTOR pSecurityDescriptor, 536 * PSECURITY_DESCRIPTOR pSecurityDescriptor, 543 long pSecurityDescriptor, 549 pSecurityDescriptor, nLength); 556 long pSecurityDescriptor, 563 * PSECURITY_DESCRIPTOR pSecurityDescriptor 568 long pSecurityDescriptor) 574 pSecurityDescriptor); 580 long pSecurityDescriptor) throws WindowsException; 584 * PSECURITY_DESCRIPTOR pSecurityDescriptor 541 GetFileSecurity(String path, int requestedInformation, long pSecurityDescriptor, int nLength) argument 554 GetFileSecurity0(long lpFileName, int requestedInformation, long pSecurityDescriptor, int nLength) argument 566 SetFileSecurity(String path, int securityInformation, long pSecurityDescriptor) argument 579 SetFileSecurity0(long lpFileName, int securityInformation, long pSecurityDescriptor) argument 591 GetSecurityDescriptorOwner(long pSecurityDescriptor) argument 601 SetSecurityDescriptorOwner(long pSecurityDescriptor, long pOwner) argument 613 GetSecurityDescriptorDacl(long pSecurityDescriptor) argument 623 SetSecurityDescriptorDacl(long pSecurityDescriptor, long pAcl) argument [all...] |
/openjdk7/jdk/src/windows/native/sun/nio/fs/ |
H A D | WindowsNativeDispatcher.c | 652 PSECURITY_DESCRIPTOR pSecurityDescriptor = local 655 if (InitializeSecurityDescriptor(pSecurityDescriptor, SECURITY_DESCRIPTOR_REVISION) == 0) { 677 PSECURITY_DESCRIPTOR pSecurityDescriptor = jlong_to_ptr(descAddress); local 682 pSecurityDescriptor); 694 PSECURITY_DESCRIPTOR pSecurityDescriptor = jlong_to_ptr(descAddress); local 699 pSecurityDescriptor, 719 PSECURITY_DESCRIPTOR pSecurityDescriptor = jlong_to_ptr(address); local 724 if (GetSecurityDescriptorOwner(pSecurityDescriptor, &pOwner, &bOwnerDefaulted) == 0) { 734 PSECURITY_DESCRIPTOR pSecurityDescriptor = jlong_to_ptr(descAddress); local 737 if (SetSecurityDescriptorOwner(pSecurityDescriptor, pOwne 747 PSECURITY_DESCRIPTOR pSecurityDescriptor = jlong_to_ptr(address); local 764 PSECURITY_DESCRIPTOR pSecurityDescriptor = (PSECURITY_DESCRIPTOR)jlong_to_ptr(descAddress); local [all...] |
Completed in 63 milliseconds