Searched refs:domain (Results 51 - 75 of 119) sorted by relevance

12345

/openjdk7/jdk/test/javax/management/mxbean/
H A DStandardMBeanOverrideTest.java194 // Get default domain
196 echo("\n>>> Get the MBean server's default domain");
197 String domain = mbs.getDefaultDomain();
198 echo("\tDefault Domain = " + domain);
204 String ons = domain + ":type=" + cn + ",name=" + i;
H A DGenericArrayTypeTest.java258 // Get default domain
260 echo("\n>>> Get the MBean server's default domain");
261 String domain = mbs.getDefaultDomain();
262 echo("\tDefault Domain = " + domain);
268 ObjectName.getInstance(domain + ":type=" + TestMXBean.class);
/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/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/jdk/src/share/classes/com/sun/jndi/dns/
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/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/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthSequence.java93 private native long getCredentialsHandle (String user, String domain, String password); argument
/openjdk7/jdk/src/share/transport/socket/
H A DsysSocket.h50 int dbgsysSocket(int domain, int type, int protocol);
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DORB.java455 public Logger getLogger( String domain )
469 // the log domain, we simply use _DEFAULT_ in this case.
480 return getCORBALogger( ORBId, domain ) ;
483 public static Logger staticGetLogger( String domain )
485 return getCORBALogger( "_CORBA_", domain ) ;
488 private static Logger getCORBALogger( String ORBId, String domain )
491 ORBId + "." + domain;
497 * given log domain and exception group in this ORB instance.
514 * given log domain and exception group in this ORB instance.
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
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/sun/net/spi/nameservice/dns/
H A DDNSNameService.java232 // default domain
233 String domain = AccessController.doPrivileged(
234 new GetPropertyAction("sun.net.spi.nameservice.domain"));
235 if (domain != null && domain.length() > 0) {
237 domainList.add(domain);
288 // If host already contains a domain name then just look it up
297 // Here we try to resolve the host using the domain suffix or
298 // the domain suffix search list. If the host cannot be resolved
299 // using the domain suffi
[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...]
H A DRTFAttributes.java150 int domain; field in class:RTFAttributes.GenericAttribute
156 domain = d;
161 public int domain() { return domain; } method in class:RTFAttributes.GenericAttribute
/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);
H A Dcallnode.hpp68 StartNode( Node *root, const TypeTuple *domain ) : MultiNode(2), _domain(domain) {
92 StartOSRNode( Node *root, const TypeTuple *domain ) : StartNode(root, domain) {}
524 : SafePointNode(tf->domain()->cnt(), NULL, adr_type),
758 const TypeTuple *domain = TypeTuple::make(ParmLimit, fields); local
766 return TypeFunc::make(domain, range);
942 // create input type (domain)
947 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+3,fields); local
954 return TypeFunc::make(domain,rang
[all...]
/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/jdk/src/macosx/native/com/apple/eio/
H A DCFileManager.m123 (JNIEnv *env, jclass clz, jshort domain, jint folderType, jboolean createIfNeeded)
130 if (FSFindFolder((SInt16)domain, (OSType)folderType, (Boolean)createIfNeeded, &foundRef) == noErr) {
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsUserPrincipals.java119 name = account.domain() + "\\" + account.name();
/openjdk7/jdk/src/share/classes/sun/misc/
H A DLauncher.java243 ProtectionDomain domain = new ProtectionDomain(
249 new AccessControlContext(new ProtectionDomain[] { domain });
347 ProtectionDomain domain =
353 new AccessControlContext(new ProtectionDomain[] { domain });
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp197 inline int os::socket(int domain, int type, int protocol) { argument
198 return ::socket(domain, type, protocol);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp201 inline int os::socket(int domain, int type, int protocol) { argument
202 return ::socket(domain, type, protocol);
/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/solaris/transport/socket/
H A Dsocket_md.c140 dbgsysSocket(int domain, int type, int protocol) { argument
141 return socket(domain, type, protocol);
/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/src/solaris/native/sun/nio/ch/
H A DNet.c159 int domain = (ipv6_available() && preferIPv6) ? AF_INET6 : AF_INET; local
161 int domain = AF_INET; local
164 fd = socket(domain, type, 0);
171 if (domain == AF_INET6) {
197 if (domain == AF_INET6 && type == SOCK_DGRAM) {

Completed in 98 milliseconds

12345