Searched defs:acl (Results 26 - 31 of 31) sorted by relevance

12

/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsSecurityDescriptor.java112 private WindowsSecurityDescriptor(List<AclEntry> acl) throws IOException { argument
116 acl = new ArrayList<AclEntry>(acl);
119 sidList = new ArrayList<Long>(acl.size());
125 for (AclEntry entry: acl) {
152 while (i < acl.size()) {
153 AclEntry entry = acl.get(i);
332 static WindowsSecurityDescriptor create(List<AclEntry> acl) argument
335 return new WindowsSecurityDescriptor(acl);
339 * Processes the array of attributes looking for the attribute "acl
[all...]
/openjdk7/jdk/src/windows/native/sun/management/
H A DFileSystemImpl.c167 ACL *acl; local
170 if (!GetSecurityDescriptorDacl(sd, &present, &acl, &defaulted)) {
178 return acl;
185 static jboolean isAccessUserOnly(JNIEnv* env, SID* owner, ACL* acl) { argument
192 if (acl == NULL) {
199 if (!GetAclInformation(acl, (void *) &acl_size_info, sizeof(acl_size_info),
214 if (!GetAce(acl, i, &ace)) {
296 ACL* acl = getFileDACL(env, sd); local
297 if (acl != NULL) {
298 res = isAccessUserOnly(env, owner, acl);
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/
H A DAdaptorBootstrap.java71 public static final String ACL_FILE_NAME="snmp.acl";
85 "com.sun.management.snmp.acl";
87 "com.sun.management.snmp.acl.file";
121 private static List<NotificationTarget> getTargetList(InetAddressAcl acl, argument
125 if (acl != null) {
129 final Enumeration td=acl.getTrapDestinations();
133 acl.getTrapCommunities(targetAddr);
253 final InetAddressAcl acl;
255 acl = useAcl ? new SnmpAcl(System.getProperty("user.name"),aclFileName)
263 new SnmpAdaptorServer(acl, por
[all...]
/openjdk7/jdk/test/sun/management/windows/
H A Drevokeall.c294 ACL *acl; local
317 if (!GetSecurityDescriptorDacl(sd, &present, &acl, &defaulted)) {
329 if (acl == NULL) {
337 if (!GetAclInformation(acl, (void *) &acl_size_info, sizeof(acl_size_info),
350 if (!GetAce(acl, i, &ace)) {
373 if (DeleteAce(acl, i) == 0) {
410 if (!SetSecurityDescriptorDacl(sd, present, acl, defaulted)) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpAdaptorServer.java372 * @param acl The <CODE>InetAddressAcl</CODE> implementation.
377 public SnmpAdaptorServer(InetAddressAcl acl) { argument
378 this(false, acl, com.sun.jmx.snmp.ServiceName.SNMP_ADAPTOR_PORT,
400 * @param acl The <CODE>InetAddressAcl</CODE> implementation.
406 public SnmpAdaptorServer(InetAddressAcl acl, int port) { argument
407 this(false, acl, port, null) ;
428 * @param acl The <CODE>InetAddressAcl</CODE> implementation.
433 public SnmpAdaptorServer(InetAddressAcl acl, InetAddress addr) { argument
434 this(false, acl, com.sun.jmx.snmp.ServiceName.SNMP_ADAPTOR_PORT,
443 * @param acl Th
449 SnmpAdaptorServer(InetAddressAcl acl, int port, InetAddress addr) argument
476 SnmpAdaptorServer(boolean forceAcl, InetAddressAcl acl, int port, InetAddress addr) argument
2624 init(Object acl, int p, InetAddress a) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp2721 oop acl = loader; local
2725 acl = parent(acl);
2726 if (cl == acl) {
2730 } while (acl != NULL);

Completed in 49 milliseconds

12