Searched defs:domain (Results 26 - 50 of 72) sorted by relevance

123

/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...]
H A DHttpCookie.java77 private String domain; // Domain=VALUE ... domain that sees cookie field in class:HttpCookie
397 * Specifies the domain within which this cookie should be presented.
399 * <p>The form of the domain name is specified by RFC 2965. A domain
407 * @param pattern a <code>String</code> containing the domain name
417 domain = pattern.toLowerCase();
419 domain = pattern;
427 * Returns the domain name set for this cookie. The form of
428 * the domain nam
761 domainMatches(String domain, String host) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthSequence.java93 private native long getCredentialsHandle (String user, String domain, String password); argument
/openjdk7/jdk/test/java/net/CookieHandler/
H A DTestHttpCookie.java147 // check domain
151 raiseError("domain", cookie.getDomain(), d);
210 static void dm(String domain, String host, boolean matches) { argument
212 if (HttpCookie.domainMatches(domain, host) != matches) {
214 "domain-match with domain " + domain);
326 "expires=Sun, 17-Jan-2038 19:14:07 GMT; path=/; domain=.google.com")
352 // test equals() when domain and path are null
/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/src/share/classes/java/lang/management/
H A DPlatformComponent.java314 private final String domain; field in class:PlatformComponent
322 String domain, String type,
328 this.domain = domain;
398 // ObjectName of a singleton MXBean contains only domain and type
400 String on = domain + ":type=" + type;
424 String domainAndType = domain + ":type=" + type;
321 PlatformComponent(String intfName, String domain, String type, Set<String> keyProperties, boolean singleton, MXBeanFetcher fetcher, PlatformComponent... subComponents) argument
/openjdk7/jdk/src/share/classes/java/security/
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/hotspot/src/share/vm/opto/
H A DgenerateOptoStub.cpp49 const TypeTuple *jdomain = C->tf()->domain();
129 const TypeTuple* domain = TypeTuple::make(cnt,fields); local
159 const TypeFunc *c_sig = TypeFunc::make(domain,range);
/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...]
H A DJmxMBeanServer.java115 * specified default domain name, outer interface, and delegate.
116 * <p>The default domain name is used as the domain part in the ObjectName
117 * of MBeans if no domain is specified by the user.
128 * @param domain The default domain name used by this MBeanServer.
137 JmxMBeanServer(String domain, MBeanServer outer, argument
139 this(domain,outer,delegate,null,false);
144 * specified default domain name, outer interface, and delegate.
145 * <p>The default domain nam
169 JmxMBeanServer(String domain, MBeanServer outer, MBeanServerDelegate delegate, boolean interceptors) argument
192 JmxMBeanServer(String domain, MBeanServer outer, MBeanServerDelegate delegate, MBeanInstantiator instantiator, boolean interceptors) argument
220 JmxMBeanServer(String domain, MBeanServer outer, MBeanServerDelegate delegate, MBeanInstantiator instantiator, boolean interceptors, boolean fairLock) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
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...]
H A DDnsContext.java48 DnsName domain; // fully-qualified domain name of this context, field in class:DnsContext
92 * Returns a DNS context for a given domain and servers.
98 public DnsContext(String domain, String[] servers, Hashtable environment) argument
101 this.domain = new DnsName(domain.endsWith(".")
102 ? domain
103 : domain + ".");
115 * but with a different domain name and with parentIsDns set to true.
117 DnsContext(DnsContext ctx, DnsName domain) { argument
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.inline.hpp232 inline int os::socket(int domain, int type, int protocol) { argument
233 return ::socket(domain, type, protocol);
/openjdk7/jdk/src/macosx/classes/com/apple/eio/
H A DFileManager.java196 * one domain. For example, although there is only one <code>root</code> folder, there are multiple <code>pref</code>
199 * domain use <code>findFolder(short domain, int folderType)</code> or <code>findFolder(short domain, int folderType,
211 * Locates a folder of a particular type, within a given domain. Similar to <code>findFolder(int folderType)</code>
212 * except that the domain to look in can be specified. Valid values for <code>domain</code>include:
215 * <dd>The User domain contains resources specific to the user who is currently logged in</dd>
217 * <dd>The Local domain contains resources shared by all users of the system but are not needed for the system
220 * <dd>The Network domain contain
229 findFolder(short domain, int folderType) argument
245 findFolder(short domain, int folderType, boolean createIfNeeded) argument
255 _findFolder(short domain, int folderType, boolean createIfNeeded) argument
[all...]
/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/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/amx/
H A DMBeanListener.java50 /** listen for MBeans in a given domain of a given type[name]
182 final String domain,
186 this(server, domain, type, null, callback);
200 final String domain,
206 mJMXDomain = domain;
180 MBeanListener( final MBeanServerConnection server, final String domain, final String type, final T callback) argument
198 MBeanListener( final MBeanServerConnection server, final String domain, final String type, final String name, final T callback) argument
/openjdk7/jdk/src/windows/native/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthSequence.c67 (JNIEnv *env, jobject this, jstring user, jstring domain, jstring password)
84 if (domain != 0) {
85 pDomain = JNU_GetStringPlatformChars(env, domain, &isCopy);
98 JNU_ReleaseStringPlatformChars(env, domain, pDomain);
141 JNU_ReleaseStringPlatformChars(env, domain, pDomain);
66 Java_sun_net_www_protocol_http_ntlm_NTLMAuthSequence_getCredentialsHandle(JNIEnv *env, jobject this, jstring user, jstring domain, jstring password) argument
/openjdk7/jdk/test/java/lang/instrument/
H A DTransformerManagementThreadAddTests.java459 ProtectionDomain domain,
468 domain,
455 transform( ClassLoader loader, String className, Class<?> classBeingRedefined, ProtectionDomain domain, byte[] classfileBuffer) argument
/openjdk7/jdk/test/sun/management/windows/
H A Drevokeall.c137 * domain is returned. The format will be \\name or domain\\name depending
138 * on if the computer belongs to a domain.
143 char domain[255]; local
145 DWORD domainLen = sizeof(domain);
153 if (LookupAccountSid(NULL, sid, name, &nameLen, domain, &domainLen, &use)) {
154 int len = strlen(name) + strlen(domain) + 3;
157 strcpy(s, domain);
/openjdk7/jdk/src/solaris/native/java/net/
H A DPlainSocketImpl.c187 int domain = ipv6_available() ? AF_INET6 : AF_INET; local
189 int domain = AF_INET; local
205 if ((fd = JVM_Socket(domain, type, 0)) == JVM_IO_ERR) {
216 if (domain == AF_INET6) {
/openjdk7/jdk/src/solaris/transport/socket/
H A Dsocket_md.c140 dbgsysSocket(int domain, int type, int protocol) { argument
141 return socket(domain, type, protocol);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTree.java364 if ("domain".equals(token.getTokenType())) {
426 * Creates the domain node.
711 private String domain; field in class:XTree.Dn
718 this.domain = mbean.getDomain();
733 // Add the domain as the first token in the Dn
734 tokens.add(0, new Token("domain", "domain=" + domain));
748 return domain;
786 return domain
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFGenerator.java224 private Integer findStyleNumber(AttributeSet a, String domain) argument
230 if (domain == null ||
231 domain.equals(a.getAttribute(Constants.StyleType)))
444 if (attr.domain() != RTFAttribute.D_DOCUMENT)
501 int domain)
508 if (attr.domain() == domain)
547 if (attr.domain() == RTFAttribute.D_SECTION)
694 if (attr.domain() == RTFAttribute.D_PARAGRAPH)
773 if (attr.domain()
498 checkControlWords(MutableAttributeSet currentAttributes, AttributeSet newAttributes, RTFAttribute words[], int domain) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DObjectName.java53 * <p>An object name consists of two parts, the domain and the key
56 * <p>The <em>domain</em> is a string of characters not including
57 * the character colon (<code>:</code>). It is recommended that the domain
60 * <p>If the domain includes at least one occurrence of the wildcard
66 * <p>If the domain is empty, it will be replaced in certain contexts
67 * by the <em>default domain</em> of the MBean server in which the
127 * a nonpattern ObjectName whose domain matches and that contains the
136 * nonpattern ObjectName whose domain matches and that contains the same
145 * <p>An ObjectName is a pattern if its domain contains a wildcard or
154 * <li>{@code *:type=Foo,name=Bar} to match names in any domain whos
676 construct(String domain, Map<String,String> props) argument
1042 isDomain(String domain) argument
1298 getInstance(String domain, String key, String value) argument
1329 getInstance(String domain, Hashtable<String,String> table) argument
1398 ObjectName(String domain, String key, String value) argument
1423 ObjectName(String domain, Hashtable<String,String> table) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciObjectFactory.cpp429 oop domain = NULL; local
432 domain = accessing_klass->protection_domain();
438 entry->protection_domain() == domain) {

Completed in 71 milliseconds

123