Searched defs:ace (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsSecurityDescriptor.java270 private static void encode(AclEntry ace, long sidAddress, long aclAddress) argument
274 if (ace.type() != AclEntryType.ALLOW && ace.type() != AclEntryType.DENY)
276 boolean allow = (ace.type() == AclEntryType.ALLOW);
279 Set<AclEntryPermission> aceMask = ace.permissions();
311 Set<AclEntryFlag> aceFlags = ace.flags();
/openjdk7/jdk/src/windows/native/sun/management/
H A DFileSystemImpl.c210 void* ace; local
214 if (!GetAce(acl, i, &ace)) {
218 if (((ACCESS_ALLOWED_ACE *)ace)->Header.AceType != ACCESS_ALLOWED_ACE_TYPE) {
221 access = (ACCESS_ALLOWED_ACE *)ace;
/openjdk7/jdk/test/sun/management/windows/
H A Drevokeall.c345 void* ace; local
350 if (!GetAce(acl, i, &ace)) {
354 if (((ACCESS_ALLOWED_ACE *)ace)->Header.AceType != ACCESS_ALLOWED_ACE_TYPE) {
357 access = (ACCESS_ALLOWED_ACE *)ace;
/openjdk7/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp930 LPVOID ace; local
931 if (!GetAce(oldACL, ace_index, &ace)) {
938 if (((ACCESS_ALLOWED_ACE *)ace)->Header.AceFlags && INHERITED_ACE) {
949 if (EqualSid(aces[i].pSid, &(((ACCESS_ALLOWED_ACE *)ace)->SidStart))) {
957 if (!AddAce(newACL, ACL_REVISION, MAXDWORD, ace,
958 ((PACE_HEADER)ace)->AceSize)) {
988 LPVOID ace; local
989 if (!GetAce(oldACL, ace_index, &ace)) {
996 if (!AddAce(newACL, ACL_REVISION, MAXDWORD, ace,
997 ((PACE_HEADER)ace)
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.cpp1568 AliasCacheEntry* ace = probe_alias_cache(adr_type);
1569 if (ace->_adr_type == adr_type) {
1570 return alias_type(ace->_index);
1654 ace->_adr_type = adr_type;
1655 ace->_index = idx;
1684 AliasCacheEntry* ace = probe_alias_cache(adr_type); local
1685 if (ace->_adr_type == adr_type) {

Completed in 464 milliseconds