Searched defs:name (Results 51 - 75 of 3245) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DReflectPermission.java31 * actions. The only name currently defined is {@code suppressAccessChecks},
41 * <table border=1 cellpadding=5 summary="Table shows permission target name, what the permission allows, and associated risks">
75 * Constructs a ReflectPermission with the specified name.
77 * @param name the name of the ReflectPermission
79 * @throws NullPointerException if {@code name} is {@code null}.
80 * @throws IllegalArgumentException if {@code name} is empty.
82 public ReflectPermission(String name) { argument
83 super(name);
87 * Constructs a ReflectPermission with the specified name an
97 ReflectPermission(String name, String actions) argument
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DNetPermission.java35 * A NetPermission contains a name (also referred to as a "target name") but
39 * The target name is the name of the network permission (see below). The naming
42 * may appear at the end of the name, following a ".", or by itself, to
51 * <table border=1 cellpadding=5 summary="Permission target name, what the permission allows, and associated risks">
172 * Creates a new NetPermission with the specified name.
173 * The name is the symbolic name of the NetPermission, such as
175 * may appear at the end of the name, followin
184 NetPermission(String name) argument
201 NetPermission(String name, String actions) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DAttributeView.java40 * Returns the name of the attribute view.
42 String name(); method in interface:AttributeView
H A DFileAttribute.java42 * Returns the attribute name.
44 String name(); method in interface:FileAttribute
/openjdk7/jdk/src/share/classes/java/rmi/
H A DRMISecurityException.java47 * @param name the detail message
52 public RMISecurityException(String name) { argument
53 super(name);
58 * @param name the detail message
64 public RMISecurityException(String name, String arg) { argument
65 this(name);
/openjdk7/jdk/src/share/classes/java/security/
H A DSecurityPermission.java35 * A SecurityPermission contains a name (also referred to as a "target name")
39 * The target name is the name of a security configuration parameter (see below).
49 * <table border=1 cellpadding=5 summary="target name,what the permission allows, and associated risks">
133 * <td>insertProvider.{provider name}</td>
134 * <td>Addition of a new provider, with the specified name</td>
144 * <td>removeProvider.{provider name}</td>
157 * <td>clearProviderProperties.{provider name}</td>
163 * described under the "removeProvider.{provider name}" permissio
310 SecurityPermission(String name) argument
327 SecurityPermission(String name, String actions) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DECGenParameterSpec.java39 private String name; field in class:ECGenParameterSpec
43 * generation using a standard (or predefined) name
48 * @param stdName the standard name of the to-be-generated EC
57 this.name = stdName;
61 * Returns the standard or predefined name of the
63 * @return the standard or predefined name.
66 return name;
/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLPermission.java45 * a name (also referred to as a "target name") but no actions
47 * The target name is the name of the permission (see below). The
50 * may appear at the end of the name, following a ".", or by itself, to
60 * <table border=1 cellpadding=5 summary="permission target name, what the permission allows, and associated risks">
118 * Creates a new <code>SQLPermission</code> object with the specified name.
119 * The name is the symbolic name of the <code>SQLPermission</code>.
121 * @param name th
129 SQLPermission(String name) argument
148 SQLPermission(String name, String actions) argument
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DEntryPair.java43 * is the contracting character name and value is its collation
52 public EntryPair(String name, int value) { argument
53 this(name, value, true);
55 public EntryPair(String name, int value, boolean fwd) { argument
56 this.entryName = name;
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLoggingPermission.java62 * @param name Permission name. Must be "control".
65 * @throws NullPointerException if <code>name</code> is <code>null</code>.
66 * @throws IllegalArgumentException if <code>name</code> is empty or if
69 public LoggingPermission(String name, String actions) throws IllegalArgumentException { argument
70 super(name);
71 if (!name.equals("control")) {
72 throw new IllegalArgumentException("name: " + name);
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanTrustPermission.java33 * MBeanTrustPermission contains a target name but no actions list.
34 * A single target name, "register", is defined for this permission.
51 /** <p>Create a new MBeanTrustPermission with the given name.</p>
53 <code>MBeanTrustPermission(name,null)</code>.</p>
54 @param name the name of the permission. It must be
57 * @throws NullPointerException if <code>name</code> is <code>null</code>.
58 * @throws IllegalArgumentException if <code>name</code> is neither
61 public MBeanTrustPermission(String name) { argument
62 this(name, nul
76 MBeanTrustPermission(String name, String actions) argument
[all...]
H A DQueryExp.java52 * @param name The name of the MBean on which the QueryExp will be applied.
61 public boolean apply(ObjectName name) throws BadStringOperationException, BadBinaryOpValueExpException, argument
H A DValueExp.java67 AttributeValueExp<Number> numberAttr(String name);
68 AttributeValueExp<String> stringAttr(String name);
69 AttributeValueExp<Boolean> booleanAttr(String name);
79 * @param name The name of the MBean on which the ValueExp will be applied.
88 public ValueExp apply(ObjectName name) argument
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DSubjectDelegationPermission.java34 * <p>A SubjectDelegationPermission contains a name (also referred
35 * to as a "target name") but no actions list; you either have the
38 * <p>The target name is the name of the authorization principal
40 * name, that is
44 * by a "." may appear at the end of the target name, to signify a
49 * names. The first one denotes any principal name from any principal
50 * class, the second one denotes any principal name of the concrete
52 * and the third one denotes a concrete principal name
63 * Creates a new SubjectDelegationPermission with the specified name
72 SubjectDelegationPermission(String name) argument
90 SubjectDelegationPermission(String name, String actions) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciKlassKlass.hpp44 ciKlassKlass(KlassHandle h_k, ciSymbol *name) argument
45 : ciKlass(h_k, name) {}
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPermGen.hpp54 virtual const char* name() const { return "PSPermGen"; } function in class:PSPermGen
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcollectorCounters.cpp29 CollectorCounters::CollectorCounters(const char* name, int ordinal) { argument
40 char* cname = PerfDataManager::counter_name(_name_space, "name");
41 PerfDataManager::create_string_constant(SUN_GC, cname, name, CHECK);
H A DgcPolicyCounters.cpp29 GCPolicyCounters::GCPolicyCounters(const char* name, int collectors, argument
38 char* cname = PerfDataManager::counter_name(_name_space, "name");
39 PerfDataManager::create_string_constant(SUN_GC, cname, name, CHECK);
/openjdk7/hotspot/src/share/vm/opto/
H A Dc2compiler.hpp37 const char *name() { return "C2"; } function in class:C2Compiler
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DJDIPermission.java35 * A <code>JDIPermission</code> object contains a name (also referred
36 * to as a "target name") but no actions list; you either have the
44 * target name, what the permission allows, and associated risks">
86 * @param name Permission name. Must be "virtualMachineManager".
87 * @throws IllegalArgumentException if the name argument is invalid.
89 public JDIPermission(String name) { argument
90 super(name);
91 if (!name.equals("virtualMachineManager")) {
92 throw new IllegalArgumentException("name
103 JDIPermission(String name, String actions) argument
[all...]
H A DType.java148 String name(); method in interface:Type
/openjdk7/jdk/src/share/classes/com/sun/jdi/connect/
H A DTransport.java35 * connection with a target VM. It consists of a name which is obtained
36 * by invoking the {@link #name} method. Furthermore, a Transport
49 * @return the name of this transport.
51 String name(); method in interface:Transport
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapNameParser.java38 public Name parse(String name) throws NamingException { argument
39 return new LdapName(name);
/openjdk7/jdk/src/share/classes/com/sun/security/jgss/
H A DInquireSecContextPermission.java36 * <p>The target name is the {@link InquireType} allowed.
42 * the specified name. The name is the symbolic name of the
45 * @param name the {@link InquireType} allowed by this
48 * @throws NullPointerException if <code>name</code> is <code>null</code>.
49 * @throws IllegalArgumentException if <code>name</code> is empty.
51 public InquireSecContextPermission(String name) { argument
52 super(name);
/openjdk7/jdk/src/share/classes/java/awt/
H A DAWTPermission.java32 * An <code>AWTPermission</code> contains a target name but
37 * The target name is the name of the AWT permission (see below). The naming
205 * Creates a new <code>AWTPermission</code> with the specified name.
206 * The name is the symbolic name of the <code>AWTPermission</code>,
210 * @param name the name of the AWTPermission
212 * @throws NullPointerException if <code>name</code> is <code>null</code>.
213 * @throws IllegalArgumentException if <code>name</cod
216 AWTPermission(String name) argument
233 AWTPermission(String name, String actions) argument
[all...]

Completed in 63 milliseconds

1234567891011>>