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

/openjdk7/jdk/src/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.java664 * PSID pSid
676 * PSID pSid
725 long pSid,
730 return LookupAccountName0(buffer.address(), pSid, cbSid);
735 private static native int LookupAccountName0(long lpAccountName, long pSid, argument
740 * PSID pSid
759 * PSID* pSid
762 * @return pSid
724 LookupAccountName(String accountName, long pSid, int cbSid) argument
/openjdk7/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp846 PSID pSid; // SID of the ACE member in struct:ace_data
911 assert(aces[i].pSid != 0, "pSid should not be 0");
912 newACLsize += GetLengthSid(aces[i].pSid);
949 if (EqualSid(aces[i].pSid, &(((ACCESS_ALLOWED_ACE *)ace)->SidStart))) {
973 aces[i].mask, aces[i].pSid)) {
1104 aces[0].pSid = get_user_sid(GetCurrentProcess());
1107 if (aces[0].pSid == 0)
1127 aces[1].pSid = administratorsSid;
1145 aces[2].pSid
[all...]
/openjdk7/jdk/src/windows/native/com/sun/security/auth/module/
H A Dnt.c43 BOOL getTextualSid(PSID pSid, LPTSTR TextualSid, LPDWORD lpdwBufferLen);
598 (PSID pSid, // binary SID
609 if(!IsValidSid(pSid)) return FALSE;
612 psia = GetSidIdentifierAuthority(pSid);
615 dwSubAuthorities = *GetSidSubAuthorityCount(pSid);
654 *GetSidSubAuthority(pSid, dwCounter) );
597 getTextualSid(PSID pSid, LPTSTR TextualSid, LPDWORD lpdwBufferLen) argument
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c807 PSID pSid = (PSID)jlong_to_ptr(sidAddress); local
809 if (AddAccessAllowedAceEx(pAcl, ACL_REVISION, (DWORD)flags, (DWORD)mask, pSid) == 0) {
819 PSID pSid = (PSID)jlong_to_ptr(sidAddress); local
821 if (AddAccessDeniedAceEx(pAcl, ACL_REVISION, (DWORD)flags, (DWORD)mask, pSid) == 0) {
909 PSID pSid; local
910 if (ConvertStringSidToSidW(lpStringSid, &pSid) == 0)
912 return ptr_to_jlong(pSid);

Completed in 57 milliseconds