Searched refs:pSid (Results 1 - 5 of 5) sorted by relevance

/openjdk10/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsSecurityDescriptor.java131 long pSid = ConvertStringSidToSid(sidString);
132 sidList.add(pSid);
135 size += GetLengthSid(pSid) +
154 long pSid = sidList.get(i);
156 encode(entry, pSid, aclBuffer.address());
H A DWindowsNativeDispatcher.java675 * PSID pSid
687 * PSID pSid
736 long pSid,
741 return LookupAccountName0(buffer.address(), pSid, cbSid);
746 private static native int LookupAccountName0(long lpAccountName, long pSid, argument
751 * PSID pSid
770 * PSID* pSid
773 * @return pSid
735 LookupAccountName(String accountName, long pSid, int cbSid) argument
/openjdk10/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp849 PSID pSid; // SID of the ACE member in struct:ace_data
914 assert(aces[i].pSid != 0, "pSid should not be 0");
915 newACLsize += GetLengthSid(aces[i].pSid);
952 if (EqualSid(aces[i].pSid, &(((ACCESS_ALLOWED_ACE *)ace)->SidStart))) {
976 aces[i].mask, aces[i].pSid)) {
1107 aces[0].pSid = get_user_sid(GetCurrentProcess());
1110 if (aces[0].pSid == 0)
1130 aces[1].pSid = administratorsSid;
1148 aces[2].pSid
[all...]
/openjdk10/jdk/src/jdk.security.auth/windows/native/libjaas/
H A Dnt.c44 BOOL getTextualSid(PSID pSid, LPTSTR TextualSid, LPDWORD lpdwBufferLen);
593 (PSID pSid, // binary SID
604 if(!IsValidSid(pSid)) return FALSE;
607 psia = GetSidIdentifierAuthority(pSid);
610 dwSubAuthorities = *GetSidSubAuthorityCount(pSid);
649 *GetSidSubAuthority(pSid, dwCounter) );
592 getTextualSid(PSID pSid, LPTSTR TextualSid, LPDWORD lpdwBufferLen) argument
/openjdk10/jdk/src/java.base/windows/native/libnio/fs/
H A DWindowsNativeDispatcher.c764 PSID pSid = (PSID)jlong_to_ptr(sidAddress); local
766 if (AddAccessAllowedAceEx(pAcl, ACL_REVISION, (DWORD)flags, (DWORD)mask, pSid) == 0) {
776 PSID pSid = (PSID)jlong_to_ptr(sidAddress); local
778 if (AddAccessDeniedAceEx(pAcl, ACL_REVISION, (DWORD)flags, (DWORD)mask, pSid) == 0) {
866 PSID pSid; local
867 if (ConvertStringSidToSidW(lpStringSid, &pSid) == 0)
869 return ptr_to_jlong(pSid);

Completed in 89 milliseconds