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

12345

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLErrorHandler.java45 * @param domain The domain of the warning. The domain can be any
47 * domain can be used to conveniently specify a web
57 public void warning(String domain, String key, argument
64 * @param domain The domain of the error. The domain can be any
66 * domain can be used to conveniently specify a web
76 public void error(String domain, Strin argument
103 fatalError(String domain, String key, XMLParseException exception) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLErrorCode.java25 * a domain and a message key.</p>
36 /** error domain **/
43 * <p>Constructs an XMLErrorCode with the given domain and key.</p>
45 * @param domain The error domain.
48 public XMLErrorCode(String domain, String key) { argument
49 fDomain = domain;
56 * @param domain The error domain.
59 public void setValues(String domain, Strin argument
[all...]
H A DDefaultErrorHandler.java70 public void warning(String domain, String key, XMLParseException ex) argument
76 public void error(String domain, String key, XMLParseException ex) argument
82 public void fatalError(String domain, String key, XMLParseException ex) argument
/openjdk7/jdk/src/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.java325 * Collect the permissions granted to this protection domain
644 * @param domain the ProtectionDomain to which the returned
656 public PermissionCollection getPermissions(ProtectionDomain domain) { argument
659 if (domain == null)
667 pc = pdMapping.get(domain.key);
680 pc = getPermissions(domain.getCodeSource());
685 addStaticPerms(pc, domain.getPermissions());
709 * @param domain the ProtectionDomain to test
718 public boolean implies(ProtectionDomain domain, Permission permission) { argument
726 pc = pdMapping.get(domain
787 getPermissions(ProtectionDomain domain) argument
791 implies(ProtectionDomain domain, Permission perm) argument
[all...]
/openjdk7/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;
/openjdk7/jaxp/src/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...]
/openjdk7/jdk/src/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.java41 * <p> The labels in a domain name correspond to JNDI atomic names.
46 * representation of a domain name consists of the labels, escaped as
52 * <p> <em>Host names</em> are a subset of domain names.
55 * these rules may be valid domain names, they will not be usable by a
66 * When the work on internationalizing domain names has stabilized
71 * textual representation of a domain name. The character sequence
79 * otherwise not allowed in a domain name. Note that escape characters
90 * object representing the one-label domain name <tt>a\.b</tt>, and
108 // If non-null, the domain name represented by this DnsName.
109 private String domain field in class:DnsName
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DClient.java49 private String domain; // might be updated by Type 2 msg 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;
89 hostname, username, domain, version, v.toString());
102 if (domain != null) {
110 p.writeSecurityBuffer(16, domain, false);
138 domain
76 Client(String version, String hostname, String username, String domain, char[] password) argument
[all...]
H A DServer.java51 final private 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
207 getPassword(String domain, String username) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLErrorReporter.java89 * <code>MessageFormatter</code> for each domain that is capable of
272 * Registers a message formatter for the specified domain.
274 * <strong>Note:</strong> Registering a message formatter for a domain
277 * message formatter for the specified domain.
279 * @param domain
282 public void putMessageFormatter(String domain, argument
284 fMessageFormatters.put(domain, messageFormatter);
288 * Returns the message formatter associated with the specified domain,
289 * or null if no message formatter is registered for that domain.
291 * @param domain Th
293 getMessageFormatter(String domain) argument
303 removeMessageFormatter(String domain) argument
323 reportError(String domain, String key, Object[] arguments, short severity) argument
345 reportError(String domain, String key, Object[] arguments, short severity, Exception exception) argument
365 reportError(XMLLocator location, String domain, String key, Object[] arguments, short severity) argument
387 reportError(XMLLocator location, String domain, String key, Object[] arguments, short severity, Exception exception) argument
[all...]
/openjdk7/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);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTrace.cpp138 int domain = 0; local
141 domain = ALL_FUNC | FUNC | ALL_EVENT | EVENT | EXCLUDE;
143 domain = ALL_FUNC | FUNC | ALL_EVENT | EVENT;
145 domain = ALL_FUNC | FUNC;
147 domain = ALL_FUNC | FUNC | EXCLUDE;
149 domain = ALL_EVENT | EVENT;
151 domain = ALL_EVENT | EVENT;
156 domain = FUNC | EVENT; // go searching
160 if (domain & FUNC) {
161 if (domain
[all...]
/openjdk7/jdk/src/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
227 * domain contains a dot ('.').
228 * I.E.: RFC 2965 section 3.3.2 says that if host is x.y.domain.com
229 * and the cookie domain is .domain.com, then it should be rejected.
235 private boolean netscapeDomainMatches(String domain, String host) argument
237 if (domain == null || host == null) {
241 // if there's no embedded dot in domain an
[all...]
/openjdk7/jdk/src/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));
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DNTSystem.java39 private String domain; field in class:NTSystem
75 * Get the domain for the current NT user.
79 * @return the domain for the current NT user.
82 return domain;
86 * Get a printable SID for the current NT user's domain.
90 * @return a printable SID for the current NT user's domain.
/openjdk7/jaxws/src/share/jaxws_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
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DErrorHandlerAdaptor.java96 public void fatalError( String domain, String key, XMLParseException e ) { argument
105 public void error( String domain, String key, XMLParseException e ) { argument
114 public void warning( String domain, String key, XMLParseException e ) { argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DServiceLocator.java61 * Maps a distinguished name (RFC 2253) to a fully qualified domain name.
63 * The special RDN "DC=." denotes the root of the domain tree.
65 * RDN "DC=." all reset the domain name and processing continues.
68 * @return A domain name or null if none can be derived.
75 StringBuffer domain = new StringBuffer();
92 (domain.length() == 1 && domain.charAt(0) == '.')) {
93 domain.setLength(0); // reset (when current or previous
96 if (domain.length() > 0) {
97 domain
[all...]
/openjdk7/jdk/src/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...]
/openjdk7/hotspot/src/share/vm/opto/
H A Druntime.cpp448 // create input type (domain)
451 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); local
459 return TypeFunc::make(domain, range);
464 // create input type (domain)
467 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); local
474 return TypeFunc::make(domain, range);
479 // create input type (domain)
483 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
491 return TypeFunc::make(domain, range);
495 // create input type (domain)
501 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+nargs, fields); local
532 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
546 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
560 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
574 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); local
589 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms,fields); local
607 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields); local
624 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields); local
638 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms, fields); local
653 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
667 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
684 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
701 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+4, fields); local
717 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+0, fields); local
761 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
804 const TypeTuple *domain = TypeTuple::make(argp, fields); local
825 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
847 const TypeTuple* domain = TypeTuple::make(TypeFunc::Parms+argcnt, fields); local
861 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields); local
878 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2, fields); local
1134 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1,fields); local
1181 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1,fields); local
1199 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields); local
1215 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+2,fields); local
[all...]
/openjdk7/jdk/src/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";
107 * might be used as domain if not provided in props
117 String domain = null;
121 domain = (String) props.get(NTLM_DOMAIN);
130 if (domain == null) {
131 domain = serverName;
133 if (domain == null) {
139 server = new Server(version, domain) {
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DXPointerErrorHandler.java68 public void warning(String domain, String key, XMLParseException ex) argument
74 public void error(String domain, String key, XMLParseException ex) argument
81 public void fatalError(String domain, String key, XMLParseException ex) argument

Completed in 83 milliseconds

12345