Searched refs:domain (Results 1 - 25 of 178) sorted by relevance

12345678

/openjdk10/jdk/src/java.base/share/classes/sun/security/util/
H A DRegisteredDomain.java31 * A domain that is registered under a "public suffix". The public suffix is
32 * a top-level domain under which names can be registered. For example,
43 * An ICANN registered domain.
47 * A private registered domain.
53 * Returns the name of the registered domain.
55 * @return the name of the registered domain
60 * Returns the type of the registered domain.
62 * @return the type of the registered domain
67 * Returns the public suffix of the registered domain.
69 * @return the public suffix of the registered domain
87 from(String domain) argument
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLErrorHandler.java46 * @param domain The domain of the warning. The domain can be any
48 * domain can be used to conveniently specify a web
58 public void warning(String domain, String key, argument
65 * @param domain The domain of the error. The domain can be any
67 * domain can be used to conveniently specify a web
77 public void error(String domain, Strin argument
104 fatalError(String domain, String key, XMLParseException exception) argument
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DXMLErrorCode.java26 * a domain and a message key.</p>
37 /** error domain **/
44 * <p>Constructs an XMLErrorCode with the given domain and key.</p>
46 * @param domain The error domain.
49 public XMLErrorCode(String domain, String key) { argument
50 fDomain = domain;
57 * @param domain The error domain.
60 public void setValues(String domain, Strin argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DPolicySpi.java50 * @param domain the ProtectionDomain to check.
53 * specified domain.
55 * @return boolean true if the permission is granted to the domain.
58 (ProtectionDomain domain, Permission permission);
104 * @param domain the ProtectionDomain to which the returned
115 (ProtectionDomain domain) {
57 engineImplies(ProtectionDomain domain, Permission permission) argument
114 engineGetPermissions(ProtectionDomain domain) argument
H A DPolicy.java316 * Collect the permissions granted to this protection domain
648 * @param domain the ProtectionDomain to which the returned
660 public PermissionCollection getPermissions(ProtectionDomain domain) { argument
663 if (domain == null)
671 pc = pdMapping.get(domain.key);
684 pc = getPermissions(domain.getCodeSource());
689 addStaticPerms(pc, domain.getPermissions());
713 * @param domain the ProtectionDomain to test
722 public boolean implies(ProtectionDomain domain, Permission permission) { argument
730 pc = pdMapping.get(domain
791 getPermissions(ProtectionDomain domain) argument
795 implies(ProtectionDomain domain, Permission perm) argument
[all...]
/openjdk10/jdk/test/javax/swing/UIDefaults/6795356/
H A Dbug6795356.java48 ProtectionDomain domain = new ProtectionDomain(null, null);
58 }, new AccessControlContext(new ProtectionDomain[]{domain}));
60 weakRef = new WeakReference<ProtectionDomain>(domain);
61 domain = null;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DDOMMessageFormatter.java54 * @param domain domain from which error string is to come.
65 public static String formatMessage(String domain, argument
68 ResourceBundle resourceBundle = getResourceBundle(domain);
71 resourceBundle = getResourceBundle(domain);
73 throw new MissingResourceException("Unknown domain" + domain, null, key);
112 static ResourceBundle getResourceBundle(String domain){ argument
113 if(domain == DOM_DOMAIN || domain
[all...]
/openjdk10/jdk/src/jdk.naming.dns/share/classes/com/sun/jndi/dns/
H A DDnsUrl.java40 * dns://[host][:port][/[domain]]
42 * dns:[/][domain]
48 * The domain indicates the domain name of the context, and is not
49 * necessarily related to the domain of the server; if it is not
50 * provided, the root domain "." is used. Special characters in
51 * the domain name must be %-escaped as described in RFC 2396.
59 private String domain; // domain name of the context field in class:DnsUrl
89 domain
[all...]
H A DDnsContextFactory.java47 * all have the same domain value.
67 public static DnsContext getContext(String domain, argument
70 return new DnsContext(domain, servers, env);
74 * "urls" are used to determine the servers, but any domain
75 * components are overridden by "domain".
77 public static DnsContext getContext(String domain, argument
82 DnsContext ctx = getContext(domain, servers, env);
84 ctx.setProviderUrl(constructProviderUrl(domain, servers));
111 String domain = urls[0].getDomain();
113 // If multiple urls, all must have the same domain
190 constructProviderUrl(String domain, String[] servers) argument
[all...]
H A DDnsName.java40 * <p> The labels in a domain name correspond to JNDI atomic names.
45 * representation of a domain name consists of the labels, escaped as
51 * <p> <em>Host names</em> are a subset of domain names.
54 * these rules may be valid domain names, they will not be usable by a
65 * When the work on internationalizing domain names has stabilized
70 * textual representation of a domain name. The character sequence
78 * otherwise not allowed in a domain name. Note that escape characters
89 * object representing the one-label domain name {@code a\.b}, and
107 // If non-null, the domain name represented by this DnsName.
108 private String domain field in class:DnsName
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/
H A DXMLErrorReporter.java48 * <code>MessageFormatter</code> for each domain that is capable of
230 * Registers a message formatter for the specified domain.
232 * <strong>Note:</strong> Registering a message formatter for a domain
235 * message formatter for the specified domain.
237 * @param domain
240 public void putMessageFormatter(String domain, argument
242 fMessageFormatters.put(domain, messageFormatter);
246 * Returns the message formatter associated with the specified domain,
247 * or null if no message formatter is registered for that domain.
249 * @param domain Th
251 getMessageFormatter(String domain) argument
261 removeMessageFormatter(String domain) argument
281 reportError(String domain, String key, Object[] arguments, short severity) argument
303 reportError(String domain, String key, Object[] arguments, short severity, Exception exception) argument
323 reportError(XMLLocator location, String domain, String key, Object[] arguments, short severity) argument
345 reportError(XMLLocator location, String domain, String key, Object[] arguments, short severity, Exception exception) argument
[all...]
/openjdk10/jdk/test/java/security/Policy/GetInstance/
H A DGetInstancePolicySpi.java51 public boolean engineImplies(ProtectionDomain domain, Permission perm) { argument
54 * Note there is no need to capture own protection domain and
62 return p.implies(domain, perm);
/openjdk10/hotspot/src/share/vm/prims/
H A DjvmtiTrace.cpp152 int domain = 0; local
155 domain = ALL_FUNC | FUNC | ALL_EVENT | EVENT | EXCLUDE;
157 domain = ALL_FUNC | FUNC | ALL_EVENT | EVENT;
159 domain = ALL_FUNC | FUNC;
161 domain = ALL_FUNC | FUNC | EXCLUDE;
163 domain = ALL_EVENT | EVENT;
165 domain = ALL_EVENT | EVENT;
170 domain = FUNC | EVENT; // go searching
174 if (domain & FUNC) {
175 if (domain
[all...]
/openjdk10/jdk/src/java.base/share/classes/com/sun/security/ntlm/
H A DClient.java49 private String domain; field in class:Client
67 * @param domain domain of {@code username}, can be null
77 String domain, char[] password) throws NTLMException {
85 this.domain = domain == null ? "" : domain;
89 hostname, username, domain, version, v.toString());
139 p.writeSecurityBuffer(28, domain, unicode);
155 username.toUpperCase(Locale.US)+domain, nonc
76 Client(String version, String hostname, String username, String domain, char[] password) argument
[all...]
H A DServer.java51 private final String domain; field in class:Server
64 * @param domain the domain, must not be null
65 * @throws NTLMException if {@code domain} is null.
67 public Server(String version, String domain) throws NTLMException { argument
69 if (domain == null) {
71 "domain cannot be null");
74 this.domain = domain;
75 debug("NTLM Server: (t,version) = (%s,%s)\n", domain, versio
212 getPassword(String domain, String username) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DInMemoryCookieStore.java50 // the cookies are indexed by its domain and associated uri (if present)
90 // and add it to domain index
107 * 1) given uri domain-matches with, or, associated with
230 * domain contains a dot ('.').
231 * I.E.: RFC 2965 section 3.3.2 says that if host is x.y.domain.com
232 * and the cookie domain is .domain.com, then it should be rejected.
238 private boolean netscapeDomainMatches(String domain, String host) argument
240 if (domain == null || host == null) {
244 // if there's no embedded dot in domain an
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/org/glassfish/external/amx/
H A DAMXUtil.java57 @param domain
61 final String domain,
64 return newObjectName(domain + ":" + props);
60 newObjectName( final String domain, final String props) argument
/openjdk10/jdk/src/jdk.naming.dns/share/classes/com/sun/jndi/url/dns/
H A DdnsURLContext.java54 * to the named DNS server, and returns the domain name as the
68 String domain = dnsUrl.getDomain();
72 new CompositeName().add(domain));
/openjdk10/jdk/src/jdk.security.auth/share/classes/com/sun/security/auth/module/
H A DNTSystem.java39 private String domain; field in class:NTSystem
73 * Get the domain for the current NT user.
75 * @return the domain for the current NT user.
78 return domain;
82 * Get a printable SID for the current NT user's domain.
84 * @return a printable SID for the current NT user's domain.
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DErrorHandlerAdaptor.java57 public void fatalError( String domain, String key, XMLParseException e ) { argument
66 public void error( String domain, String key, XMLParseException e ) { argument
75 public void warning( String domain, String key, XMLParseException e ) { argument
/openjdk10/hotspot/src/share/vm/opto/
H A Druntime.cpp472 // create input type (domain)
475 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); local
483 return TypeFunc::make(domain, range);
488 // create input type (domain)
491 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); local
498 return TypeFunc::make(domain, range);
503 // create input type (domain)
507 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
515 return TypeFunc::make(domain, range);
519 // create input type (domain)
525 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+nargs, fields); local
556 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
570 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
584 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
597 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); local
613 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields); local
631 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+3, fields); local
645 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); local
657 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms, fields); local
672 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
686 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
703 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
720 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+4, fields); local
736 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+0, fields); local
780 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
824 const TypeTuple *domain = TypeTuple::make(argp, fields); local
851 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
873 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
896 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
918 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
946 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
976 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms + argcnt, fields); local
996 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
1019 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
1041 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
1061 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
1083 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
1106 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
1129 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
1150 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms + argcnt, fields); local
1170 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
1184 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); local
1201 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
1472 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1,fields); local
1519 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1,fields); local
1537 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields); local
1553 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields); local
[all...]
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DServiceLocator.java57 * Maps a distinguished name (RFC 2253) to a fully qualified domain name.
59 * The special RDN "DC=." denotes the root of the domain tree.
61 * RDN "DC=." all reset the domain name and processing continues.
64 * @return A domain name or null if none can be derived.
71 StringBuilder domain = new StringBuilder();
88 (domain.length() == 1 && domain.charAt(0) == '.')) {
89 domain.setLength(0); // reset (when current or previous
92 if (domain.length() > 0) {
93 domain
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/libs/jaxp/library/
H A DJAXPPolicyManager.java204 public PermissionCollection getPermissions(ProtectionDomain domain) { argument
213 private boolean isTestMachineryDomain(ProtectionDomain domain) { argument
214 CodeSource cs = (domain == null) ? null : domain.getCodeSource();
224 public boolean implies(ProtectionDomain domain, Permission perm) { argument
228 if (defaultPolicy.implies(domain, perm))
234 if (isTestMachineryDomain(domain))
/openjdk10/jdk/src/java.management/share/classes/com/sun/jmx/mbeanserver/
H A DRepository.java80 * For each domain, a hashtable contains the instances with
96 private final String domain; field in class:Repository
167 * WARNING: domain name is not considered here because it is supposed
291 // Extract the domain name.
294 // Default domain case
296 dom = domain;
301 return null; // No domain containing registered object names
316 * Construct a new repository with the given default domain.
318 public Repository(String domain) { argument
319 this(domain,tru
325 Repository(String domain, boolean fairLock) argument
[all...]
/openjdk10/jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/ntlm/
H A DNTLMServer.java67 * com.sun.security.sasl.ntlm.domain
68 * String, the domain of the server, default is server name (fqdn parameter)
89 "com.sun.security.sasl.ntlm.domain";
108 * might be used as domain if not provided in props
119 String domain = null;
123 domain = (String) props.get(NTLM_DOMAIN);
132 if (domain == null) {
133 domain = serverName;
135 if (domain == null) {
141 server = new Server(version, domain) {
[all...]

Completed in 261 milliseconds

12345678