Searched defs:registry (Results 26 - 34 of 34) sorted by relevance

12

/openjdk7/jdk/test/java/rmi/testlibrary/
H A DTestLibrary.java51 import java.rmi.registry.LocateRegistry;
52 import java.rmi.registry.Registry;
58 import sun.rmi.registry.RegistryImpl;
361 * @param registry the registry to find the port of.
362 * @return the port number the registry is using.
365 public static int getRegistryPort(Registry registry) { argument
369 RemoteRef remoteRef = ((RegistryImpl)registry).getRef();
375 throw new RuntimeException("Error getting registry port.", ex);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DElementInfoImpl.java239 RegistryInfoImpl<T,C,F,M> registry, M m ) throws IllegalAnnotationException {
240 super(builder,registry);
314 this.schemaType = Util.calcSchemaType(reader(),property,registry.registryClass,
238 ElementInfoImpl(ModelBuilder<T,C,F,M> builder, RegistryInfoImpl<T,C,F,M> registry, M m ) argument
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DConnectorBootstrap.java40 import java.rmi.registry.Registry;
119 "com.sun.management.jmxremote.registry.ssl";
268 private static Registry registry = null; field in class:ConnectorBootstrap
271 // Remove the entry from registry
273 if (registry != null) {
274 UnicastRemoteObject.unexportObject(registry, true);
275 registry = null;
790 registry =
794 registry =
801 ((UnicastRef) ((RemoteObject) registry)
[all...]
/openjdk7/jdk/src/share/demo/jvmti/mtrace/
H A Dmtrace.c305 static JNINativeMethod registry[2] = { local
321 rc = (*env)->RegisterNatives(env, klass, registry, 2);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DDatagramChannelImpl.java96 private MembershipRegistry registry; field in class:DatagramChannelImpl
825 // check the registry to see if we are already a member of the group
826 if (registry == null) {
827 registry = new MembershipRegistry();
830 MembershipKey key = registry.checkMembership(group, interf, source);
875 registry.add(key);
923 registry.remove(key);
1003 if (registry != null)
1004 registry.invalidateAll();
/openjdk7/jdk/src/share/demo/jvmti/heapTracker/
H A DheapTracker.c387 static JNINativeMethod registry[2] = { local
400 rc = (*env)->RegisterNatives(env, klass, registry, 2);
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java70 import java.rmi.registry.Registry;
106 import sun.rmi.registry.RegistryImpl;
195 private transient Registry registry; field in class:Activation
258 registry = new SystemRegistryImpl(port, null, ssf, systemStub);
2258 * remote service is bound in the registry.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDHandler.java1210 // names. A registry will be built for each symbol space defined
1220 // also put <redefine> names in a registry that we look through in
1990 // who want the Identity constraint registry vaguely know what they're about.
3688 Map<String,Element> registry, Map<String,XSDocumentInfo> registry_sub, Element currComp,
3693 if ((objElem = registry.get(qName)) == null) {
3700 registry.put(qName, currComp);
3733 registry.put(","+newName, currComp);
3737 registry.put(currSchema.fTargetNamespace+","+newName, currComp);
3742 checkForDuplicateNames(","+newName, declType, registry, registry_sub, currComp, currSchema);
3744 checkForDuplicateNames(currSchema.fTargetNamespace+","+newName, declType, registry, registry_su
3687 checkForDuplicateNames(String qName, int declType, Map<String,Element> registry, Map<String,XSDocumentInfo> registry_sub, Element currComp, XSDocumentInfo currSchema) argument
4111 getElementFromMap(Map<String, Element> registry, String declKey) argument
4116 getDocInfoFromMap(Map<String, XSDocumentInfo> registry, String declKey) argument
4121 getFromMap(Map registry, String key) argument
[all...]
/openjdk7/langtools/test/tools/javac/T5090006/
H A Dbroken.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/framework/ junit/framework/Assert.class Assert. ...

Completed in 72 milliseconds

12