Searched refs:LiveRef (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DUnicastRef2.java31 import sun.rmi.transport.LiveRef;
50 public UnicastRef2(LiveRef liveRef) {
78 ref = LiveRef.read(in, true);
H A DUnicastServerRef2.java56 public UnicastServerRef2(LiveRef ref)
69 super(new LiveRef(port, csf, ssf));
H A DActivatableServerRef.java34 import sun.rmi.transport.LiveRef;
64 super(new LiveRef(port, csf, ssf));
H A DUnicastRef.java44 import sun.rmi.transport.LiveRef;
70 protected LiveRef ref;
81 public UnicastRef(LiveRef liveRef) {
87 * LiveRef.
93 public LiveRef getLiveRef() {
492 ref = LiveRef.read(in, false);
H A DUnicastServerRef.java56 import sun.rmi.transport.LiveRef;
130 public UnicastServerRef(LiveRef ref) {
139 super(new LiveRef(port));
H A DUtil.java57 import sun.rmi.transport.LiveRef;
H A DActivation.java109 import sun.rmi.transport.LiveRef;
394 LiveRef lref =
395 new LiveRef(new ObjID(ObjID.ACTIVATOR_ID), port, null, ssf);
477 LiveRef lref = new LiveRef(new ObjID(4), port, null, ssf);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DLiveRef.java44 public class LiveRef implements Cloneable { class in inherits:Cloneable
63 public LiveRef(ObjID objID, Endpoint endpoint, boolean isLocal) { method in class:LiveRef
73 public LiveRef(int port) { method in class:LiveRef
81 public LiveRef(int port, method in class:LiveRef
92 public LiveRef(ObjID objID, int port) { method in class:LiveRef
100 public LiveRef(ObjID objID, int port, RMIClientSocketFactory csf, method in class:LiveRef
111 LiveRef newRef = (LiveRef) super.clone();
181 if (obj != null && obj instanceof LiveRef) {
182 LiveRef re
[all...]
H A DConnectionInputStream.java46 private Map<Endpoint, List<LiveRef>> incomingRefTable = new HashMap<>(5);
69 void saveRef(LiveRef ref) {
73 List<LiveRef> refList = incomingRefTable.get(ep);
76 refList = new ArrayList<LiveRef>();
92 for (Map.Entry<Endpoint, List<LiveRef>> entry :
H A DDGCClient.java54 * When a LiveRef to a remote object enters the VM, it needs to be
58 * When the first LiveRef to a particular remote object is registered,
62 * certain period of time. While LiveRef instances to remote objects
66 * The DGCClient tracks the local reachability of registered LiveRef
67 * instances (using phantom references). When the LiveRef instance
122 * Register the LiveRef instances in the supplied list to participate
128 static void registerRefs(Endpoint ep, List<LiveRef> refs) {
168 * maps LiveRef value to RefEntry objects and the renew/clean thread
178 /** table of refs held for endpoint: maps LiveRef to RefEntry */
179 private Map<LiveRef, RefEntr
[all...]
H A DDGCImpl.java182 * that hold references to the object associated with the LiveRef
292 LiveRef ref = new LiveRef(dgcID, 0);
/openjdk7/jdk/src/share/classes/java/rmi/registry/
H A DLocateRegistry.java38 import sun.rmi.transport.LiveRef;
175 LiveRef liveRef =
176 new LiveRef(new ObjID(ObjID.REGISTRY_ID),
/openjdk7/jdk/test/java/rmi/server/useCustomRef/
H A DUseCustomRef.java49 import sun.rmi.transport.LiveRef;
61 ref = new CustomServerRef(new LiveRef(0));
164 public CustomServerRef(LiveRef ref) {
172 super (new LiveRef(port, csf, ssf));
198 public CustomRef(sun.rmi.transport.LiveRef ref) {
/openjdk7/jdk/src/share/classes/sun/rmi/registry/
H A DRegistryImpl.java55 import sun.rmi.transport.LiveRef;
97 LiveRef lref = new LiveRef(id, port, csf, ssf);
107 LiveRef lref = new LiveRef(id, port);
/openjdk7/jdk/test/java/rmi/registry/interfaceHash/
H A DInterfaceHash.java56 import sun.rmi.transport.LiveRef;
75 new LiveRef(new ObjID(ObjID.REGISTRY_ID),
/openjdk7/jdk/test/java/rmi/testlibrary/
H A DTestLibrary.java61 import sun.rmi.transport.LiveRef;
370 LiveRef liveRef = ((UnicastServerRef)remoteRef).getLiveRef();
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DProxyClient.java47 import sun.rmi.transport.LiveRef;
185 LiveRef liveRef = ((UnicastRef2)ref).getLiveRef();
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnector.java108 import sun.rmi.transport.LiveRef;
1867 LiveRef liveRef = ((UnicastRef2)ref).getLiveRef();

Completed in 921 milliseconds